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.
1.337363185441E9のようなGMTタイムスタンプを返すAPIを使用しています。これをJodaDateTimeオブジェクトにフォーマットするにはどうすればよいですか?それがどのように有効なタイムスタンプ形式であるのか私にはわかりません。多分それは問題の一部です...?
それはエポックから数秒のように見えます。私の頭のてっぺんから、これは次のようになります:
long l = Double.valueOf("1.337363185441E9").longValue(); l = l * 1000; DateTime d = DateTime(l);