Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSONのJavascriptタイムスタンプをJavaタイムスタンプに変換するにはどうすればよいですか?
Json timestamp Example: 1365427692
最新の方法は、java.time クラスを使用することです。
Instant instant = Instant.ofEpochSecond( 1365427692L );
AnInstantは、ナノ秒の分解能を持つ UTC のタイムライン上の瞬間です。
Instant