Q:

Java program to compare dates using Date.compareTo() method

belongs to collection: Java Date and Time Programs

0

Java program to compare dates using Date.compareTo() method

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to compare dates using the Date.compareTo() method is given below. The given program is compiled and executed successfully.

// Java program to compare dates using 
// Date.compareTo() method

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Date date1 = new Date(22, 9, 16);
    Date date2 = new Date(21, 10, 15);
    Date date3 = new Date(21, 10, 15);

    int result = 0;

    result = date1.compareTo(date2);
    if (result > 0)
      System.out.println("The date1 is later than date2");
    else if (result < 0)
      System.out.println("The date2 is later than date1");
    else
      System.out.println("Both are equal");

    result = date2.compareTo(date3);
    if (result > 0)
      System.out.println("The date2 is later than date3");
    else if (result < 0)
      System.out.println("The date3 is later than date2");
    else
      System.out.println("Both are equal");
  }
}

Output:

The date1 is later than date2
Both are equal

Explanation:

In the above program, we imported the "java.util.*" package to use the Date class. Here, we created a class Main that contains a static method main(). The main() method is the entry point for the program, here we created three objects of the Date class with specified dates. Then we compared created objects using the compareTo() method and printed appropriate messages.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Date and Time Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to compare dates using the Date.equal... >>
<< Java program to get a date from milliseconds using...