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

I come from the C# world, so not too experienced with Java yet. Was just told by Eclipse that the Date was deprecated.

Person p = new Person();
p.setDateOfBirth(new Date(1985, 1, 1));

Why? And what (especially in cases like above) should be used instead?

share|improve this question
5  
I'm experiencing a similar learning curve, also going from C# to Java. The other thing that bit me is that the month of year is a 0-based system (0 to 11 where Jan. = 0 and Dec. = 11) but the days of the month are 1-based (1 to 31). Heads up on that one! – Paul Sasik Apr 15 '11 at 13:36
@Paul Sasik, yes, but there is Calendar.JANUARY constant for example, and one for each month – Diogo Apr 15 '11 at 14:07
1  
@PaulSasik lol. Yeah, stupid Java. Had to switch from C# to Java and OMG the pain and misery. – cbmeeks Mar 22 at 13:56

6 Answers

up vote 23 down vote accepted

The specific Date constructor is deprecated, and a Calendar should be used instead. The JavaDoc for Date describes which constructors are deprecated and how to replace them using a Calendar.

share|improve this answer

the java.util.Date class isn't actually deprecated, just that constructor, along with a couple other constructors/methods are deprecated. It was deprecated because that sort of usage doesn't work well with internationalization. The Calendar class should be used instead:

    Calendar cal = Calendar.getInstance();
    cal.set(Calendar.YEAR, 1988);
    cal.set(Calendar.MONTH, 1);
    cal.set(Calendar.DAY_OF_MONTH, 1);
    Date dateRepresentation = cal.getTime();

Take a look at the date javadoc

http://download.oracle.com/javase/6/docs/api/java/util/Date.html

share|improve this answer

Just in addition http://www.xmission.com/~goodhill/dates/datedeprecation.htm

Google will deliver further Information about the "Why?"

share|improve this answer

Date itself is not deprecated. It's just a lot of its methods are. See here for details.

Use java.util.Calendar instead.

share|improve this answer

One reason that the constructor is deprecated is that the meaning of the year parameter is not what you would expect. The javadoc says:

As of JDK version 1.1, replaced by Calendar.set(year + 1900, month, date).

Notice that the year field is the number of years since 1900, so your sample code most likely won't do what you expect it to do. And that's the point.

In general, the Date API only supports the modern western calendar, has idiosyncratically specified components, and behaves inconsistently if you set fields.

The Calendar and GregorianCalendar APIs are better, but the 3rd-party Joda-time APIs are generally thought to be the best.

share|improve this answer

Similar to what binnyb suggested, you might consider using the newer Calendar > GregorianCalendar method. See these more recent docs:

http://download.oracle.com/javase/6/docs/api/java/util/GregorianCalendar.html

share|improve this answer

Your Answer

 
discard

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

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