Open In App

Calendar getTime() Method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The getTime() method in Calendar class is used to return an object resembling the Date that is represented by this Calendar’s time value.
Syntax: 
 

public final Date getTime()

Parameters: The method does not take any parameters.
Return Value: The method returns the Date, represented by this Calendar.
Below programs illustrate the working of getTime() Method of Calendar class: 
Example 1: 
 

Java




// Java code to illustrate
// getTime() method
 
import java.util.*;
 
public class Calendar_Demo {
 
    public static void main(String args[])
        throws InterruptedException
    {
 
        // Creating a calendar
        Calendar calndr1
            = Calendar.getInstance();
 
        // Displaying the current time
        System.out.println("The Current"
                           + " Time is: "
                           + calndr1.getTime());
 
        // Adding few delay
        Thread.sleep(10000);
 
        // Creating another calendar
        Calendar calndr2 = Calendar.getInstance();
 
        // Displaying the upcoming time
        Date dt = calndr2.getTime();
        System.out.println("The upcoming"
                           + " time is: " + dt);
    }
}


Output: 

The Current Time is: Wed Feb 20 14:40:37 UTC 2019
The upcoming time is: Wed Feb 20 14:40:47 UTC 2019

 

Example 2: 
 

Java




// Java code to illustrate
// getTime() method
 
import java.util.*;
 
public class Calendar_Demo {
 
    public static void main(String args[])
        throws InterruptedException
    {
 
        // Creating a calendar
        Calendar calndr1
            = Calendar.getInstance();
 
        // Displaying the current time
        System.out.println("The Current"
                           + " Time is: "
                           + calndr1.getTime());
 
        // Adding few delay
        Thread.sleep(5000);
 
        // Creating another calendar
        Calendar calndr2 = Calendar.getInstance();
 
        // Displaying the upcoming time
        Date dt = calndr2.getTime();
        System.out.println("The upcoming"
                           + " time is: " + dt);
    }
}


Output: 

The Current Time is: Wed Feb 20 14:40:50 UTC 2019
The upcoming time is: Wed Feb 20 14:40:55 UTC 2019

 

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getMaximum-int-
 



Last Updated : 24 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads