How to compare two given dates in Java?



Problem Description :


Write a program in java that compare two given dates with all possible validations.

Concept :


We can compare two dates using following methods of Date class.

1) int compareTo(Date anotherDate) - It returns 3 values 0(zero), positive, negative.
  • 0(zero) -> both dates are equal.
  • positive -> first date comes after second date.
  • negative -> first date comes before second date.
2) boolean after(Date date) - Test if this date is after the specified date.
3) boolean before(Date date) - Test if this date is before the specified date.



Recommended :



Java Program :




Output :


Case 1 :

Output of Java program how to compare two given dates - case1
Output - Both dates are equal

Case 2 :

Output of Java program how to compare two given dates - case2
Output - First date comes before second date


Case 3 :

Output of Java program how to compare two given dates - case3
Output - First date comes after second date

References :






Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.

Tags :  Date and Time problems, Date comparison in Java, String, Regular expressions, DateFormat, SimpleDateFormat, if else statement.

About Author:

I am simple guy with lot of ambitions. My main motive is to share whatever knowledge I have related to programming. With me you can easily learn how to solve any programming problem in Java.You can connect with me on social networking sites also.


Let's Get Connected: Linkedin | Facebook |

How to compare two given dates in Java? How to compare two given dates in Java? Reviewed by Rohit Agarwal on 11/26/2016 Rating: 5

No comments:

Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.

Powered by Blogger.