开发者

Dates before January 1st, 1970

The getTime() fetches the time in millis for a certain Date. Can this be used reliably for dates say in the 18th century. We use the millis and store it in a string variable for future comparison. Is ther开发者_如何转开发e a limit on how far in the past that this could be used?


I would highly recommend you take a look at JodaTime if you are doing date/time comparisons of the distant past. Or actually any sort of date/time comparisons and calculations. It is a great library!

Don't rely on getTime() for what you want to do. At least consider using Java's Calendar/GregorianCalendar. But personally, I'd suggest using JodaTime.


Of course, long is signed and for example 1.1.1701 is -8 488 782 000 000.


Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Date object

Better to go for Calendar OR Jodatime

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜