- package org.opensicience.FormatterDemo;
- import java.util.Calendar;
- import java.util.Locale;
- public class TestTimeFormatter {
-
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Calendar c = Calendar.getInstance();
-
- String str1 = String.format(Locale.CHINESE, "%tF %<ty %<tB %<tA %<tT", c);
- String str2 = String.format(Locale.ENGLISH, "%tF %<ty %<tB %<tA %<tT", c);
- System.out.println(str1);
- System.out.println(str2);
- }
- }
- 输出为:
- 2013-09-14 13 九月 星期六 17:05:51
- 2013-09-14 13 September Saturday 17:05:51
复制代码 额 这种使用格式化字符串来格式化时间和日期的方法大家用过吗?额 前几天写了三节的这个的小总结,虽然格式实在是我的痛,但是还是值得与大家分享的, 6000多字都是自己手写的,完全原创,如果有想知道的同学去看吧 http://blog.csdn.net/zhou5852 (看完毕老师15天前的课程的同学就可以理解了)
|