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