Very often I come across negative feedback on Java Date and other date-time-related classes. Being a .NET developer, I cannot fully (without having used them) understand, what's actually wrong with them.
Can anybody shed some light on this?
|
|
|
Ah, the Java Date class. Perhaps one of the best examples of how not to do something in any language, anywhere. Where do I begin? Reading the JavaDoc might lead one to think that the developers have actually got some good ideas. It goes on about the difference between UTC and GMT at length, despite the fact that the difference between the two is basically leap seconds (which happen pretty rarely). However, the design decisions really lay to waste any thought of being a well designed API. Here are some of the favourite mistakes:
Finally, it's worth noting that leap seconds generally correct themselves against a good system clock which is updated with ntp within an hour (see links below). The chance of a system being still up and running in the introduction of two leap seconds (every six months minimum, every few years practically) is pretty unlikely, especially considering the fact that you have to redeploy new versions of your code from time to time. Even using a dynamic language which regenerates classes or something like a WAR engine will pollute the class space and run out of permgen eventually. |
|||
|
|
|
|||
|
|
|
JSR-310, which is slated to improve the Date API for Java 7, justifies itself in the original JSR as follows:
|
|||
|
|
|
I feel for you... as a former .NET programmer, I asked the same questions, the time API in .NET (timespans, operator overloading) is very convenient. First, to create a specific date, you use either a deprecated API, or:
To subtract a day you do evil things like
or worse
To find out how much time passed between two dates (in days / weeks / months)... it gets even worse However DateUtils from apache ( As Brabster wrote, Joda Time is also a good external library, but apache seems more "common" than anything else... |
|||||||||||
|
|
I find Java's Date API usable, to be honest. Most of the issues I've seen and heard about relate to the verbosity, the need to involve multiple classes to do anything useful (Calendar, Date, DateFormat/SimpleDateFormat) and the lack of simple accessors like getDayOfWeek(). Joda Time is a well-respected alternative API in Java, and in the Why Joda Time section it gives some more arguments as to why it is a viable alternative that might be of interest. |
|||
|
|