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.
我正在使用一个返回 GMT 时间戳的 API,例如 1.337363185441E9。如何将其格式化为 Joda DateTime 对象?我不知道这甚至是一种有效的时间戳格式。也许这是问题的一部分......?
这看起来像是自纪元以来的几秒钟。在我的脑海中,这将是:
long l = Double.valueOf("1.337363185441E9").longValue(); l = l * 1000; DateTime d = DateTime(l);