Could someone please advise the current "best practice" around Date and Calendar types.

When writing new code, is it best to always favour Calendar over Date, or are there circumstances where Date is the more appropriate datatype?

link|improve this question

73% accept rate
15  
Joda time: joda-time.sourceforge.net – R. Martinho Fernandes Sep 10 '09 at 9:16
feedback

8 Answers

up vote 70 down vote accepted

Date is a simpler class and is mainly there for backward compatibility reasons. If you need to set particular dates or do date arithmetic, use a Calendar. Calendars also handle localization. The previous date manipulation functions of Date have since been deprecated.

Personally I tend to use either time in milliseconds as a long (or Long, as appropriate) or Calendar when there is a choice.

Both Date and Calendar are mutable, which tends to present issues when using either in an API.

link|improve this answer
49  
+1 one for answering a Java date question without mentioning Joda Time!!! – Mark Sep 10 '09 at 9:35
5  
Or jQuery...? :) – cletus Sep 10 '09 at 9:43
1  
or Father Christmas ? :) – Adrian Pronk Sep 10 '09 at 11:44
3  
Look at the date and time of cletus' answer, if you were a day later that would have been spooky :S – Ian Jul 4 '11 at 13:19
feedback

The best way for new code (if your policy allows third-party code) is to use the Joda Time library.

Both, Date and Calendar, have so much design problems that both are not good solutions for new code.

link|improve this answer
4  
I second the suggestion to use joda time. It is easier to use and understand and offers much more functionality you can use. – Jeroen van Bergen Sep 10 '09 at 9:34
9  
For discussion on whether to use Joda Time or stick with standard JDK classes, see stackoverflow.com/questions/589870/… – Jonik Sep 10 '09 at 10:20
How other frameworks co-exists with that? is it supported out of the box or do you need to write some extra converters? – IAdapter Sep 10 '09 at 10:45
Downvotes? Oh, please. – dmeister Feb 23 at 14:20
feedback

Date is best for storing a date object. It is the persisted one, the Serialized one ...

Calendar is best for manipulating Dates.

Note: we also sometimes favor java.lang.Long over Date, because Date is mutable and therefore not thread-safe. On a Date object, use setTime() and getTime() to switch between the two. For example, a constant Date in the application (examples: the zero 1970/01/01, or an applicative END_OF_TIME that you set to 2099/12/31 ; those are very useful to replace null values as start time and end time, especially when you persist them in the database, as SQL is so peculiar with nulls).

link|improve this answer
I take it you are taking about the immutable java.lang.Long – pjp Sep 10 '09 at 9:18
Correct. I improved my answer to reflect your nice comment. Thanks. – KLE Sep 10 '09 at 9:22
feedback
  • Date and Calendar are really the same fundamental concept (both represent an instant in time and are wrappers around an underlying long value).

  • One could argue that Calendar is actually even more broken than Date is, as it seems to offer concrete facts about things like day of the week and time of day, whereas if you change its timeZone property, the concrete turns into blancmange! Neither objects are really useful as a store of year-month-day or time-of-day for this reason.

  • Use Calendar only as a calculator which, when given Date and TimeZone objects, will do calculations for you. Avoid its use for property typing in an application.

  • Use SimpleDateFormat together with TimeZone and Date to generate display Strings.

  • If you're feeling adventurous use Joda, although it is unnecessarily complicated IMHO and is soon to be superceded by the JSR-310 date API in any event.

  • I have answered before that it is not difficult to roll your own YearMonthDay class, which uses Calendar under the hood for date calculations. I was downvoted for the suggestion but I still believe it is a valid one because JODA (and JSR-310) are really so over-complicated for most use-cases

link|improve this answer
Is there a time frame for JSR310 ? It was going to be in Java 7, but I believe that's now not the case. – Brian Agnew Sep 10 '09 at 9:39
@Brian - it's certainly gone very quiet on that mailing list! – oxbow_lakes Sep 10 '09 at 9:42
Just checking, it's gone Inactive, which means they've not published a milestone draft in 18 months :-( – Brian Agnew Sep 10 '09 at 9:43
Most recent comment on the mailing list is from July and by Stephen, so the project is probably still ticking away – oxbow_lakes Sep 10 '09 at 10:11
Agreed. If you know how to use Date safely as an immutable object, and Calendar to manipulate Dates, most people should be safe. Be careful when using SimpleDateFormat in multithreaded code. – cwash Nov 22 '10 at 22:53
feedback

Dates should be used as immutable points in time; Calendars are mutable, and can be passed around and modified if you need to collaborate with other classes to come up with a final date. Consider them analogous to String and StringBuilder and you'll understand how I consider they should be used.

(And yes, I know Date isn't actually technically immutable, but the intention is that it should not be mutable, and if nothing calls the deprecated methods then it is so.)

link|improve this answer
1  
This is the way I tend to look at it as well. – cwash Nov 22 '10 at 22:50
feedback

I always advocate Joda-time. Here's why.

  1. the API is consistent and intuitive. Unlike the java.util.Date/Calendar APIs
  2. it doesn't suffer from threading issues, unlike java.text.SimpleDateFormat etc. (I've seen numerous client issues relating to not realising that the standard date/time formatting is not thread-safe)
  3. it's the basis of the new Java date/time APIs (JSR310, once scheduled for Java 7, but I think they're delayed). So you'll be using APIs that will become core Java APIs.
link|improve this answer
3  
The last time I looked, JODA and JSR-310 looked very different, even if they are both written by Stephen Colebourne. That said, JODA would introduce you to the complexity of the date-time problems that JSR-310 also solves – oxbow_lakes Sep 10 '09 at 9:39
feedback

I generally use Date if possible. Although it is mutable, the mutators are actually deprecated. In the end it basically wraps a long that would represent the date/time. Conversely, I would use Calendars if I have to manipulate the values.

You can think of it this way: you only use StringBuffer only when you need to have Strings that you can easily manipulate and then convert them into Strings using toString() method. In the same way, I only use Calendar if I need to manipulate temporal data.

For best practice, I tend to use immutable objects as much as possible outside of the domain model. It significantly reduces the chances of any side effects and it is done for you by the compiler, rather than a JUnit test. You use this technique by creating private final fields in your class.

And coming back to the StringBuffer analogy. Here is some code that shows you how to convert between Calendar and Date

String s = "someString"; // immutable string
StringBuffer buf = new StringBuffer(s); // mutable "string" via StringBuffer
buf.append("x");
assertEquals("someStringx", buf.toString()); // convert to immutable String

// immutable date with hard coded format.  If you are hard
// coding the format, best practice is to hard code the locale
// of the format string, otherwise people in some parts of Europe
// are going to be mad at you.
Date date =     new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH).parse("2001-01-02");

// Convert Date to a Calendar
Calendar cal = Calendar.getInstance();
cal.setTime(date);

// mutate the value
cal.add(Calendar.YEAR, 1);

// convert back to Date
Date newDate = cal.getTime();

// 
assertEquals(new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH).parse("2002-01-02"), newDate);
link|improve this answer
feedback

I've created a Time class for easy Date and Time manipulation, source and documentation is found on: https://github.com/knyttl/Maite/wiki/Maite-Date-and-Time

It allows date and time handling and formatting as for instance:

  new Time(Time.TODAY)
        .plus(1, Time.HOUR)
        .plus(1, Time.MINUTE)
        .plus(1, Time.SECOND)
        .format("yyyy-MM-dd");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.