java8新的时间日期库 LocalDateTime转化为毫秒数

百度搜索半天没有直接答案.自己测试总结如下

     LocalDateTime time=LocalDateTime.now();
转毫秒数
  long sa= time.atZone(ZoneId.of("Asia/Shanghai")).toInstant().toEpochMilli();
 
 测试
 System.out.println(time);
转化回LocalDateTime 打印

 System.out.println(Instant.ofEpochMilli(sa).atZone(ZoneId.of("Asia/Shanghai")).toLocalDateTime());
结果:

2018-04-09T11:07:59.430
2018-04-09T11:07:59.430

你可能感兴趣的:(java8)