本地日期的长时间戳
我有一个很长的时间戳1499070300(相当于星期一,03 Jul 2017 16:25:00 +0800),但当我将其转换为LocalDateTime时,我得到1970-01-18T16:24:30.300
这是我的代码
long test_timestamp = 1499070300;
LocalDateTime triggerTime =
LocalDateTime.ofInstant(Instant.ofEpochMilli(test_timestamp), TimeZone
.getDefault().toZoneId());