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

How do I compare dates in between in Java?

Example:

date1 is 22-02-2010
date2 is 07-04-2010 today
date3 is 25-12-2010

date3 is always greater than date1 and date2 is always today. How do I verify if today's date is in between date1 and date 3?

share|improve this question

5 Answers

up vote 65 down vote accepted

Date has before and after methods and can be compared to each other.

You could also give Joda a go.

How do I verify if today's date is in between date1 and date 3?

if(todayDate.after(historyDate) && todayDate.before(futureDate)) {
    // In between
}
share|improve this answer
@Bart K sorry my bad I didn't complete the question, I updated the question – ant Apr 7 '10 at 12:52
@c0mrade, see my edit. – Bart Kiers Apr 7 '10 at 13:06
2  
Or another solution: if(!historyDate.after(todayDate) && !futureDate.before(todayDate)) { /* historyDate <= todayDate <= futureDate */ } – Aleksejs Mjaliks Apr 7 '10 at 13:12

Use compareTo:

date1.compareTo(date2);

share|improve this answer
@Chandru my bad I updated the question. – ant Apr 7 '10 at 12:52

Use getTime() to get the numeric value of the date, and then compare using the returned values.

share|improve this answer

Compare the two dates:

  Date today = new Date();                   
  Date myDate = new Date(today.getYear(),today.getMonth()-1,today.getDay());
  System.out.println("My Date is"+myDate);    
  System.out.println("Today Date is"+today);
  if (today.compareTo(myDate)<0)
      System.out.println("Today Date is Lesser than my Date");
  else if (today.compareTo(myDate)>0)
      System.out.println("Today Date is Greater than my date"); 
  else
      System.out.println("Both Dates are equal"); 
share|improve this answer
1  
I think that "new Date(today.getYear(),today.getMonth()-1,today.getDay());" it's deprecated. download.oracle.com/javase/6/docs/api/java/util/Date.html – Dr. No Nov 3 '11 at 15:48

Yes,the compareTo method which is from the Comparable Interface as suggested above by @Peter and others is the correct way to see if two dates are equal. I was using the equals method which gave me no results until I saw this post. The equals method which date inherits from Object actually compares Date object to another Object not necessarily to another date for equality.

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.