GregorianCalendar.getInstance(Locale) in Java

GregorianCalendar.getInstance(Locale): This method is available in java.util.GregorianCalendar class of Java.

Syntax:

Calendar java.util.Calendar.getInstance(Locale aLocale)

This method takes one argument of type Locale as its parameter. This method gets a calendar using the default time zone and specified locale. The Calendar returned is based on the current time in the default time zone with the given locale.

Parameters: One parameter is required for this method.

aLocale: the locale for the week data.

Returns: a Calendar.

Exceptions: NA

Approach

Java

import java.util.GregorianCalendar;
import java.util.Locale;

public class GregorianCalendargetInstance2 {
    public static void main(String[] args) {

        System.out.println(GregorianCalendar.
getInstance(Locale.CANADA));

    }
}

Output:

java.util.GregorianCalendar[time=1644159859673,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="Asia/Calcutta",offset=19800000,dstSavings=0,useDaylight=false,transitions=7,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2022,MONTH=1,WEEK_OF_YEAR=7,WEEK_OF_MONTH=2,DAY_OF_MONTH=6,DAY_OF_YEAR=37,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=1,AM_PM=1,HOUR=8,HOUR_OF_DAY=20,MINUTE=34,SECOND=19,MILLISECOND=673,ZONE_OFFSET=19800000,DST_OFFSET=0]


No comments:

Post a Comment