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.

I have 2 dates in string format like DD/MM/YYYY. Now I have to write the condition if date1 is before date2. How can I do this? Please help me.

share|improve this question
Did you try my answer? Your accept rate is too low... – Marco Sep 11 '12 at 7:43

1 Answer

Try this:

SimpleDateFormat curFormater = new SimpleDateFormat("dd/MM/yyyy"); 
Date date1 = curFormater.parse(date1Str); 
Date date2 = curFormater.parse(date2Str); 
if (date1.before(date2)) 
{
}
share|improve this answer
It gives me error...The operator < is undefined for the argument type(s) java.util.Date, java.util.Date...Did it work for you? – LEO87 Sep 11 '12 at 7:26
@LEO87: try my edited code – Marco Sep 11 '12 at 7:30
@Marco..thanks....its working – LEO87 Sep 11 '12 at 7:35

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.