Calendar.getInstance(Locale) in Java

Calendar.getInstance(Locale): This method is available in java.util.Calendar 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.Calendar;
import java.util.Locale;

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

        System.out.println(Calendar.getInstance(Locale.ENGLISH));

    }
}

Output:

java.util.GregorianCalendar[time=1642917006918,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=20,SECOND=6,MILLISECOND=918,ZONE_OFFSET=19800000,DST_OFFSET=0]


No comments:

Post a Comment