Compare two Java Date objects using compareTo method example

  1. /*
  2.   Compare two Java Date objects using compareTo method example.
  3.   This example shows how to compare two java Date objects using compareTo method of
  4.   java Date Class.
  5. */
  6.  
  7. import java.util.Date;
  8.  
  9. public class CompareDateUsingCompareToExample{
  10.  
  11. public static void main(String[] args) {
  12.  
  13. //create first date object
  14. Date d1 = new Date();
  15.  
  16. //make interval of 10 millisecond before creating second date object
  17. try{
  18. Thread.sleep(10);
  19. }catch(Exception e){
  20. }
  21.  
  22.  
  23. //create second date object
  24. Date d2 = new Date();
  25.  
  26. System.out.println("First Date : " + d1);
  27. System.out.println("Second Date : " + d2);
  28.  
  29. /*
  30.   Use compareTo method of java Date class to compare two date objects.
  31.   compareTo returns value grater than 0 if first date is after another date,
  32.   returns value less than 0 if first date is before another date and returns
  33.   0 if both dates are equal.
  34.   */
  35.  
  36. int results = d1.compareTo(d2);
  37.  
  38. if(results > 0)
  39. System.out.println("First Date is after second");
  40. else if (results < 0)
  41. System.out.println("First Date is before second");
  42. else
  43. System.out.println("Both dates are equal");
  44. }
  45. }
  46.  
  47. /*
  48. TYPICAL Output Would be
  49. First Date : Sun Sep 09 19:50:32 EDT 2007
  50. Second Date : Sun Sep 09 19:50:32 EDT 2007
  51. First Date is before second
  52. */

Post new comment

To combat spam, please enter the code in the image.


Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!