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:
Flowchart:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join