Calendar.getInstance(TimeZone, Locale) in Java

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

Syntax:

Calendar java.util.Calendar.getInstance(TimeZone zone, Locale aLocale)

This method takes two arguments one of type TimeZone and the other of type Locale as its parameters. This method gets a calendar with the specified time zone and locale. The Calendar returned is based on the current time in the given time zone with the given locale.

Parameters: One parameter is required for this method.

zone: the time zone to use.

aLocale: the locale for the week data.

Returns: a Calendar.

Exceptions: NA

Approach

Java

import java.util.Calendar;
import java.util.Locale;
import java.util.TimeZone;

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

        System.out.println(Calendar.getInstance(TimeZone.getDefault(),
Locale.ENGLISH));
    }
}

Output:

java.util.GregorianCalendar[time=1642917639452,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=0,WEEK_OF_YEAR=5,WEEK_OF_MONTH=5,DAY_OF_MONTH=23,DAY_OF_YEAR=23,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=11,HOUR_OF_DAY=11,MINUTE=30,SECOND=39,MILLISECOND=452,ZONE_OFFSET=19800000,DST_OFFSET=0]


No comments:

Post a Comment