w3resource

Java: Create a Date object using the Calendar class

Java DateTime, Calendar: Exercise-1 with Solution

Write a Java program to create a Date object using the Calendar class.

Sample Solution:

Java Code:

import java.util.*;
public class Exercise1 {
    public static void main(String[] args)
    {
     int year = 2016;
     int month = 0; // January
     int date = 1;

     Calendar cal = Calendar.getInstance();
     // Sets the given calendar field value and the time value
     // (millisecond offset from the Epoch) of this Calendar undefined.
     cal.clear();
     System.out.println();
     cal.set(Calendar.YEAR, year);
     cal.set(Calendar.MONTH, month);
     cal.set(Calendar.DATE, date);

     System.out.println(cal.getTime());
     System.out.println();
	 }
}

Sample Output:

Fri Jan 01 00:00:00 IST 2016

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Create a Date object using the Calendar class

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Java Date, Time and Calendar Exercises
Next: Write a Java program to get and display information (year, month, day, hour, minute) of a default calendar.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/datetime/java-datetime-exercise-1.php