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
//将UTC时间转化为LocalDateTime,并进行时间前后的对比
Instant instant = Instant.parse("2017-02-14T16:00:00Z");
LocalDateTime nextStartTime = LocalDateTime.ofInstant(instant, ZoneId.of(ZoneOffset.UTC.getId()));
if (nextStartTime.isAfter(gfsTime)) {
Assert.assertEquals(0, -1);
}