Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java DateTime, Calendar Exercises: 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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe