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

Possible Duplicate:
Compare dates in Java

I need compare two dates date1 and date2, the condition is:

  1. date1 < date2
  2. date1 + 14Month <= date2

For the first condition im using if(date2.after(date1))

But for the second I'm not sure...

I'm using Calendar calendar = Calendar.getInstance(); calendar.setTime(fecha1); calendar.add(Calendar.MONTH, +14); Date nuevaFecha1 = (Date) calendar.getTime();

some idea how validate this

share|improve this question

marked as duplicate by Sam, dbaseman, WATTO Studios, Peter O., xdazz Oct 9 '12 at 1:58

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.

1 Answer

Try this

    Calendar calendar1 = Calendar.getInstance(); 
    calendar1.set(Calendar.YEAR, year);
    calendar1.set(Calendar.MONTH, month );
    calendar1.set(Calendar.DAY_OF_MONTH, day);  

    Calendar calendar2 = Calendar.getInstance(); 
    calendar2.set(Calendar.YEAR, year);
    calendar2.set(Calendar.MONTH, month );
    calendar2.set(Calendar.DAY_OF_MONTH, day); 

    long mills1 = calendar1.getTimeInMillis();
    long mills2 = calendar2.getTimeInMillis();

    if(mills1 > mills2){

    }else{
    }
share|improve this answer
where add 14month to date1?? – ale Oct 8 '12 at 21:52
Month range is 0-11 ,suppose now january so its no is 0 + 14 = 14 ,means 1 yr + 3 month so u want to add like year +1 and month 3 – parag Oct 9 '12 at 5:22

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