Set the Date and Time with Gregorian Calendar in Java


To work with the GregorianCalendar class, import the following package.

import java.util.GregorianCalendar;

Create a Date object.

Date d = new Date();

Now, create an object and set the time using the setTime() method.

GregorianCalendar cal = new GregorianCalendar();
cal.setTime(d);

The following is an example.

Example

 Live Demo

import java.util.Date;
import java.util.GregorianCalendar;
public class Demo {
   public static void main(String[] a) {
      Date d = new Date();
      GregorianCalendar cal = new GregorianCalendar();
      cal.setTime(d);
      System.out.println(d);
   }
}

Output

Mon Nov 19 16:11:31 UTC 2018

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 27-Jun-2020

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements