Java Date Handling
Java Date Handling
Alternatives
Is the JDK standard date/time API the only option? Fortunately not. Perhaps the best-known alternative
is an open source library called Joda-Time. Joda-Time was born out of frustration with the standard
API. Not everyone is happy with Joda-Time either. Another open source library, Date4j is a light-
weight alternative, that may appeal to those who don’t need n+1 classes for handling their dates. Then
there is JSR 310, which is the proposal for the new and improved Date/Time API coming for Java SE 7.
JSR 310 is largely based on Joda-Time. JDK 7 is supposed to be released later this year. We’ll see…