Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times.

What are the pros and cons of using the Java date and time classes compared to 3rd party libraries such as Joda time? I guess these third party libraries exist for a good reason, but I've never really compared them myself.

share|improve this question

5 Answers

up vote 87 down vote accepted

Max asked for the pros and cons of using Joda...

Pros:

  • It works, very well. I strongly suspect there are far fewer bugs in Joda than the standard Java libraries. Some of the bugs in the Java libraries are really hard (if not impossible) to fix due to the design.
  • It's designed to encourage you to think about date/time handling in the right way - separating the concept of a "local time" (e.g "wake me at 7am wherever I am") and an instant in time ("I'm calling James at 3pm PST; it may not be 3pm where he is, but it's the same instant")
  • I believe it makes it easier to update the timezone database, which does change relatively frequently
  • It has a good immutability story, which makes life a lot easier IME.
  • Leading on from immutability, all the formatters are thread-safe, which is great because you almost always want to reuse a single formatter through the application
  • If/when Java 7 gains a similar library, you'll have a head-start on learning it, as it'll be similar

Cons:

  • It's another API to learn (although the docs are pretty good)
  • It's another library to build against and deploy
  • If/when Java 7 gains a similar library, you'll need to relearn some stuff
  • I've failed to use the DateTimeZoneBuilder effectively in the past. This is a very rare use case though.

To respond to the oxbow_lakes' idea of effectively building your own small API, here are my views of why this is a bad idea:

  • It's work. Why do work when it's already been done for you?
  • A newcomer to your team is much more likely to be familiar with Joda than with your homegrown API
  • You're likely to get it wrong for anything beyond the simplest uses... and even if you initially think you only need simple functionality, these things have a habit of growing more complicated, one tiny bit at a time. Date and time manipulation is hard to do properly. Furthermore, the built-in Java APIs are hard to use properly - just look at the rules for how the calendar API's date/time arithmetic works. Building anything on top of these is a bad idea rather than using a well-designed library to start with.
share|improve this answer
Excellent description of Joda, thanks – matt b Feb 26 '09 at 14:13

Well, unless you intend to wait for Java 7, hoping that they will implement a better API for manipulating date and time, yes, please, use Joda time. It's time saving and avoid many headackes.

share|improve this answer
2  
+1. Joda Time is so much better it's not even funny. – Jon Skeet Feb 26 '09 at 9:57
1  
JSR-310 may not make Java 7 – oxbow_lakes Feb 26 '09 at 9:59
Definitly use Joda Time – CodeMonkey Feb 26 '09 at 9:59
Pros and cons? I've never used Joda time - would be interesting to hear what people like about it. – Max Stewart Feb 26 '09 at 9:59

The answer is: it depends

JODA (and JSR-310) is a fully-functional date/time library, including support for use with multiple calendar systems.

Personally I found JODA to be a step too far in terms of complexity for what I need. The 2 principal (IMHO) mistakes in the standard java Date and Calendar classes are:

  1. They are mutable
  2. They mix up the concept of a Year-Month-Day from an Instant-In-Time

Although these are addressed by JODA, you'll find it quite easy to roll your own classes for YearMonthDay and Instant, which both use the java classes under the hood for actual "calendrical" calculations. Then you don't have to familiarize yourself with an API of >100 classes, a different formatting/parsing mechanism etc.

Of course, if you do need complete representation of different chronologies (e.g. Hebrew) or wish to be able to define your own imaginary Calendar system (e.g. for a game you are writing) then perhaps JODA or JRS-310 is for you. If not, then I would suggest that rolling your own is possibly the way to go.

The JSR-310 spec lead is Stephen Colebourne who wrote JODA in the 1st place, so will logically replace JODA.

share|improve this answer
1  
I'd say it's going to become deprecated for greenfield developement targeting Java 7 - which is far from obsolete, IMO. The main reason not to develop your own classes at all is that date and time handling is insanely difficult. Using the standard Java classes in a "definitely correct" way (cont) – Jon Skeet Feb 26 '09 at 10:10
2  
is hard too, IMO. In addition, there's the way that DateTimeFormatter in Joda time is thread-safe, making that aspect much more pleasant. You don't have to learn the whole API, of course - just the bits you need. The docs make this relatively easy. The date and time wheel is one which (cont) – Jon Skeet Feb 26 '09 at 10:11
5  
should not be reinvented by non-specialists, IMO. – Jon Skeet Feb 26 '09 at 10:12
1  
So when you use SimpleDateFormat are you carefully making sure you never reuse the same instance from multiple threads without locking? How confident are you about the order in which you do things with the insanely complicated Calendar class's arithmetic? Why not use an expert's knowledge? – Jon Skeet Feb 26 '09 at 10:26
3  
Although, I didn't mean that I didn't trust JODA lots of people are using Maven and Apache Commons Collections: It doesn't mean that they aren't cr@p of the highest order! Lots of people using it == good is also a straw man. What I meant was "I don't want dependencies unless I have to" – oxbow_lakes Feb 26 '09 at 12:08
show 12 more comments

It all depends on what you are doing with the dates. If you are simply persisting them, them Java's built in Dates will probably do all you want them to. However if you are doing extensive time date manipulation, you're probably better off with Joda.

share|improve this answer

If you don't need all the additional functionality from Joda, you could also try a simpler third party library like http://sourceforge.net/projects/joocal. It provides very basic abstraction of Java's Date and Calendar objects. Examples:

// Get the day three days before my birthday
java.sql.Timestamp ts = new Day("10.07.1981").getPrevious(3).getSQLTimestamp();

// Use periods and compare them
// Get a period spanning the next five years (2010-2015)
Period<Year> nextCoupleOfYears = new Year("2010").getPeriod(5);
if (nextCoupleOfYears.contains(new Day(ts)) {
  // Do stuff...
}

That way, you can do all sorts of manipulation but still use Java's objects for persistence

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.