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

I get confused by the Java API for the Date class. Everything seems to be deprecated and links to the Calendar class. So I started using the Calendar objects to do what I would have liked to do with a Date, but intuitively it kind of bothers me to use a Calendar object when all I really want to do is create and compare two dates.

Is there a simple way to do that? For now I do (in Scala)

var cal = Calendar.getInstance()
cal.set(year, month, day, hour, minute, second)
cal.getTime() // get back to a Date object
share|improve this question
11  
that is fine... – Bohemian Jun 22 '11 at 8:54

4 Answers

up vote 5 down vote accepted

You can find more at the following question.

Java Date vs Calendar

share|improve this answer

You can use SimpleDateFormat

SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Date d = sdf.parse("21/12/2012");

But I don't know whether it should be considered more right than to use Calendar ...

share|improve this answer

The excellent joda-time library is almost always a better choice than Java's Date or Calendar classes. Here's a few examples:

DateTime aDate = new DateTime(year, month, day, hour, minute, second);
DateTime anotherDate = new DateTime(anotherYear, anotherMonth, anotherDay, ...);
if (aDate.isAfter(anotherDate)) {...}
DateTime yearFromADate = aDate.plusYears(1);
share|improve this answer

You can try joda-time.

share|improve this answer
+1 for this - Joda time is in my view infinitely better than the built-in Java date functionality. – mikera May 7 '12 at 8:04

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.