Question: Java API has the GregorianCalendar class in the java.util package, which you can use to obtain the year, month, and day of a date. The
Java API has the GregorianCalendar class in the java.util package, which you can use to obtain the year, month, and day of a date. The no-arg constructor constructs an instance for the current date, and the methods get(GregorianCalendar.YEAR), get(GregorianCalendar.MONTH), and get(GregorianCalendar.DAY_OF_MONTH) return the year, month, and day.
Write a program to perform two tasks:
■ Display the current year, month, and day.
■ The GregorianCalendar class has the setTimeInMillis(long), which can be used to set a specified elapsed time since January 1, 1970. Set the value to 1234567898765L and display the year, month, and day.
Step by Step Solution
3.42 Rating (158 Votes )
There are 3 Steps involved in it
Output YEAR 2011 MONTH 6 DAYOFMONTH 11 YEAR 1973 MONTH 10 DAYOFMONTH 30 Java Program to demonstrate ... View full answer
Get step-by-step solutions from verified subject matter experts
