w3resource

Java: Display information of a default calendar

Java DateTime, Calendar: Exercise-2 with Solution

Write a Java program to get and display information (year, month, day, hour, minute) about a default calendar.

Sample Solution:

Java Code:

import java.util.*;
public class Exercise2 {
 public static void main(String[] args)
    {
       // Create a default calendar
        Calendar cal = Calendar.getInstance();
       // Get and display information of current date from the calendar:
	    System.out.println();
        System.out.println("Year: " + cal.get(Calendar.YEAR));
        System.out.println("Month: " + cal.get(Calendar.MONTH));
        System.out.println("Day: " + cal.get(Calendar.DATE));
        System.out.println("Hour: " + cal.get(Calendar.HOUR));
        System.out.println("Minute: " + cal.get(Calendar.MINUTE));
	    System.out.println();
    }
}

Sample Output:

Year: 2017                                                                                                   
Month: 5                                                                                                   
Day: 20                                                                                                   
Hour: 1                                                                                                   
Minute: 57  

N.B.: The result may varry for your system date and time.

Pictorial Presentation:

Java Exercises: Java DateTime, Calendar Exercises - Display information of a default calendar.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Display information of a default calendar

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to create a Date object using the Calendar class.
Next: Write a Java program to get the maximum value of the year, month, week, date from the current date of a default calendar.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.