标签:tar print nbsp 返回 本地 div 时间格式 cal blog
LocalDateTime返回的是本地时间,比如
LocalDateTime startDateTime = LocalDateTime.of(2016, 9, 18,00, 00);
返回的时间格式:2016-09-18T00:00
里面很多方法比较常用,也很实用,比如plusDays(-1),时间对象减少一天,plusDays(1),时间对象增加一天。同样plusHours也是类似的用法。
返回当前时间的样例:
LocalDateTime startDateTime1 = LocalDateTime.now(); System.out.println(startDateTime1); //2017-01-16T19:41:10.702
标签:tar print nbsp 返回 本地 div 时间格式 cal blog
原文地址:http://www.cnblogs.com/ilazysoft/p/6290873.html