Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to compare two Dates without the time portion?

How to compare date without time in java ?

Date currentDate = new Date();// get current date           
Date eventDate = tempAppointments.get(i).mStartDate;
int dateMargin = currentDate.compareTo(eventDate); 

this code compares time and date !

share|improve this question
2  
This is again repeat of [old post][1] [1]: stackoverflow.com/questions/1439779/… – saury Oct 16 '11 at 12:02
@saury: thanks for the link! Somehow I knew that Joda Time would have this handled in a smooth fashion. – Hovercraft Full Of Eels Oct 16 '11 at 12:25

marked as duplicate by McDowell, trashgod, robertc, martin clayton, Gordon Nov 14 '11 at 9:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 7 down vote accepted

Try compare dates changing to 00:00:00 its time (as this function do):

public static Date getZeroTimeDate(Date fecha) {
    Date res = fecha;
    Calendar calendar = Calendar.getInstance();

    calendar.setTime( fecha );
    calendar.set(Calendar.HOUR_OF_DAY, 0);
    calendar.set(Calendar.MINUTE, 0);
    calendar.set(Calendar.SECOND, 0);
    calendar.set(Calendar.MILLISECOND, 0);

    res = calendar.getTime();

    return res;
}

Date currentDate = new Date();// get current date           
Date eventDate = tempAppointments.get(i).mStartDate;
int dateMargin = getZeroTimeDate(currentDate).compareTo(getZeroTimeDate(eventDate));
share|improve this answer

You can write a method Date withoutTime(Date) that returns a copy of the date in which all time fields (hour, minute, second, milli) are set to zero. Then you can compare these.

Or you can switch to Joda Time if possible. That library already has the data type DateMidnight, which is what you are looking for.

share|improve this answer

Write your own method which does not take the time into account:

public static int compareDate(Date date1, Date date2) {
    if (date1.getYear() == date2.getYear() &&
        date1.getMonth() == date2.getMonth() &&
        date1.getDate() == date2.getDate()) {
      return 0 ;
    } 
    else if (date1.getYear() < date1.getYear() ||
             (date1.getYear() == date2.getYear() &&
              date1.getMonth() < date2.getMonth()) ||
             (date1.getYear() == date2.getYear() &&
              date1.getMonth() == date2.getMonth() &&
              date1.getDate() < date2.getDate()) {
      return -1 ;
   }
   else {
     return 1 ;
   }
}

Note that methods getYear(), getMonth() and getDate() have been deprecated. You should go through the Calendar class and perform the same method.

share|improve this answer

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