Java获取当前时间日期
程序员文章站
2022-03-10 21:23:33
...
Date date = new Date();
System.out.println(date.toString());
//SimpleDateFormat 格式时间
SimpleDateFormat df = new SimpleDateFormat("y-M-d h:m:s");
System.out.println(df.format(date));
输入结果:
Wed Oct 11 15:42:08 CST
2017 2017-10-11 3:42:8
日期和时间的格式化编码
时间模式字符串用来指定时间格式。在此模式中,所有的 ASCII 字母被保留为模式字母,定义如下:
上一篇: Gmail 5大恼人之处