如何将 JSON 中的 Javascript 时间戳转换为 java 时间戳?
Json timestamp Example: 1365427692
private Date JSONTarihConvert(String tarih) throws ParseException{
long timestamp = getTimeStampFromTarih(tarih);
return new Date(timestamp);
}
更多信息在这里
现代方式是使用 java.time 类。
Instant instant = Instant.ofEpochSecond( 1365427692L );
AnInstant
是 UTC 时间线上的时刻,分辨率为纳秒。