JDK5.0 沿用了C语言库函数中的printf方法,例如,如下:

System.out.printf("%8.2f",x);

可以用8个字符的宽度和小数点后两位的精度打印x。

另外,以前我们向输出当前日期,2006-5-10,需要使用DateFormat类,写好几行代码,
现在:

System.out.printf("%tF",new Date());

输出的就是2006-5-10

另外,相应的,String提供了format方法,用来格式化字符串。

String today = String.format("%tF",new Date());

System.out.println(today);

输出结果也一样。

其他格式控制符请查看文档。