更改日期格式SimpleDateFormat
而不使用 java 中的类对象而不使用上面的代码,java 中是否有任何替代方法?
问问题
81 次
1 回答
0
您可以System.out.format
与%tB
%te
等一起使用。
查看 Java 教程示例。
Calendar c = Calendar.getInstance();
System.out.format("%tB %te, %tY%n", c, c, c); // --> "May 29, 2006"
System.out.format("%tl:%tM %tp%n", c, c, c); // --> "2:34 am"
System.out.format("%tD%n", c); // --> "05/29/06"
于 2013-10-24T08:42:17.797 回答