JAva printfフォーマットノート

1409 ワード

import org.junit.Test;

public class TestMe {

	@Test
	public void test() throws IOException {
		//               
		System.out.printf("%2$s %2$s %1$s 
", "111", "222"); // 111 111 222 // ( ) System.out.printf("%.2f
", 1.256F); // 1.23 // System.out.printf("%,d
", 12345678); // 12,345,678 // System.out.printf("%12d| %15d|
", 12345678, 666666666); // , System.out.printf("%-12d| %-15d|
", 12345678, 666666666); System.out.println(); // '%%' %% System.out.printf("%d%%
", 58); // System.out.printf("%05d
", 98); // 00058 // System.out.printf("%(d
", -98); // (98) System.out.printf("%tF
", System.currentTimeMillis()); // 14:28:07 System.out.printf("%tT
", System.currentTimeMillis()); // 2013-08-15 } }

 
参照:http://java.chinaitlab.com/base/835591.html 
 
 
--end