SimpleDateFormat
Posted dengsheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SimpleDateFormat相关的知识,希望对你有一定的参考价值。
1 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 2 String Time = sdf.format(new Date()); 3 System.out.println(Time);
1 public final String format(Date date) 2 { 3 return format(date, new StringBuffer(), 4 DontCareFieldPosition.INSTANCE).toString(); 5 }
显示结果如上
以上是关于SimpleDateFormat的主要内容,如果未能解决你的问题,请参考以下文章