3

如何将 JSON 中的 Javascript 时间戳转换为 java 时间戳?

Json timestamp Example: 1365427692
4

2 回答 2

0
private Date JSONTarihConvert(String tarih) throws ParseException{
    long timestamp = getTimeStampFromTarih(tarih);
    return new Date(timestamp);
}

更多信息在这里

于 2013-04-11T08:23:12.337 回答
0

java.time

现代方式是使用 java.time 类。

Instant instant = Instant.ofEpochSecond( 1365427692L );

AnInstant是 UTC 时间线上的时刻,分辨率为纳秒。

于 2016-08-23T07:01:18.913 回答