Start line:  
End line:  

Snippet Preview

Snippet HTML Code

Stack Overflow Questions
I want to create a java.util.Locale object using the display name of the locale. For example, i want the locale of thailand having the value th_TH if the display name is Thai (Thailand) How to do this? One way i could think of is to iterate in all the available locales and comparing the display name of each locale with my display name and finding the locale object. But i want to...
   /*
    * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    *
    * This code is free software; you can redistribute it and/or modify it
    * under the terms of the GNU General Public License version 2 only, as
    * published by the Free Software Foundation.  Oracle designates this
    * particular file as subject to the "Classpath" exception as provided
    * by Oracle in the LICENSE file that accompanied this code.
   *
   * This code is distributed in the hope that it will be useful, but WITHOUT
   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   * version 2 for more details (a copy is included in the LICENSE file that
   * accompanied this code).
   *
   * You should have received a copy of the GNU General Public License version
   * 2 along with this work; if not, write to the Free Software Foundation,
   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
   *
   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
   * or visit www.oracle.com if you need additional information or have any
   * questions.
   */
  
  /*
   * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
   * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
   *
   * The original version of this source code and documentation
   * is copyrighted and owned by Taligent, Inc., a wholly-owned
   * subsidiary of IBM. These materials are provided under terms
   * of a License Agreement between Taligent and Sun. This technology
   * is protected by multiple US and International patents.
   *
   * This notice and attribution to Taligent may not be removed.
   * Taligent is a registered trademark of Taligent, Inc.
   *
   */
  
  package java.util;
  
  
A Locale object represents a specific geographical, political, or cultural region. An operation that requires a Locale to perform its task is called locale-sensitive and uses the Locale to tailor information for the user. For example, displaying a number is a locale-sensitive operation— the number should be formatted according to the customs and conventions of the user's native country, region, or culture.

The Locale class implements identifiers interchangeable with BCP 47 (IETF BCP 47, "Tags for Identifying Languages"), with support for the LDML (UTS#35, "Unicode Locale Data Markup Language") BCP 47-compatible extensions for locale data exchange.

A Locale object logically consists of the fields described below.

language
ISO 639 alpha-2 or alpha-3 language code, or registered language subtags up to 8 alpha letters (for future enhancements). When a language has both an alpha-2 code and an alpha-3 code, the alpha-2 code must be used. You can find a full list of valid language codes in the IANA Language Subtag Registry (search for "Type: language"). The language field is case insensitive, but Locale always canonicalizes to lower case.

Well-formed language values have the form [a-zA-Z]{2,8}. Note that this is not the the full BCP47 language production, since it excludes extlang. They are not needed since modern three-letter language codes replace them.

Example: "en" (English), "ja" (Japanese), "kok" (Konkani)

script
ISO 15924 alpha-4 script code. You can find a full list of valid script codes in the IANA Language Subtag Registry (search for "Type: script"). The script field is case insensitive, but Locale always canonicalizes to title case (the first letter is upper case and the rest of the letters are lower case).

Well-formed script values have the form [a-zA-Z]{4}

Example: "Latn" (Latin), "Cyrl" (Cyrillic)

country (region)
ISO 3166 alpha-2 country code or UN M.49 numeric-3 area code. You can find a full list of valid country and region codes in the IANA Language Subtag Registry (search for "Type: region"). The country (region) field is case insensitive, but Locale always canonicalizes to upper case.

Well-formed country/region values have the form [a-zA-Z]{2} | [0-9]{3}

Example: "US" (United States), "FR" (France), "029" (Caribbean)

variant
Any arbitrary value used to indicate a variation of a Locale. Where there are two or more variant values each indicating its own semantics, these values should be ordered by importance, with most important first, separated by underscore('_'). The variant field is case sensitive.

Note: IETF BCP 47 places syntactic restrictions on variant subtags. Also BCP 47 subtags are strictly used to indicate additional variations that define a language or its dialects that are not covered by any combinations of language, script and region subtags. You can find a full list of valid variant codes in the IANA Language Subtag Registry (search for "Type: variant").

However, the variant field in Locale has historically been used for any kind of variation, not just language variations. For example, some supported variants available in Java SE Runtime Environments indicate alternative cultural behaviors such as calendar type or number script. In BCP 47 this kind of information, which does not identify the language, is supported by extension subtags or private use subtags.


Well-formed variant values have the form SUBTAG (('_'|'-') SUBTAG)* where SUBTAG = [0-9][0-9a-zA-Z]{3} | [0-9a-zA-Z]{5,8}. (Note: BCP 47 only uses hyphen ('-') as a delimiter, this is more lenient).

Example: "polyton" (Polytonic Greek), "POSIX"

extensions
A map from single character keys to string values, indicating extensions apart from language identification. The extensions in Locale implement the semantics and syntax of BCP 47 extension subtags and private use subtags. The extensions are case insensitive, but Locale canonicalizes all extension keys and values to lower case. Note that extensions cannot have empty values.

Well-formed keys are single characters from the set [0-9a-zA-Z]. Well-formed values have the form SUBTAG ('-' SUBTAG)* where for the key 'x' SUBTAG = [0-9a-zA-Z]{1,8} and for other keys SUBTAG = [0-9a-zA-Z]{2,8} (that is, 'x' allows single-character subtags).

Example: key="u"/value="ca-japanese" (Japanese Calendar), key="x"/value="java-1-7"
Note: Although BCP 47 requires field values to be registered in the IANA Language Subtag Registry, the Locale class does not provide any validation features. The Builder only checks if an individual field satisfies the syntactic requirement (is well-formed), but does not validate the value itself. See Locale.Builder for details.

Unicode locale/language extension

UTS#35, "Unicode Locale Data Markup Language" defines optional attributes and keywords to override or refine the default behavior associated with a locale. A keyword is represented by a pair of key and type. For example, "nu-thai" indicates that Thai local digits (value:"thai") should be used for formatting numbers (key:"nu").

The keywords are mapped to a BCP 47 extension value using the extension key 'u' (UNICODE_LOCALE_EXTENSION). The above example, "nu-thai", becomes the extension "u-nu-thai".code

Thus, when a Locale object contains Unicode locale attributes and keywords, getExtension(UNICODE_LOCALE_EXTENSION) will return a String representing this information, for example, "nu-thai". The Locale class also provides getUnicodeLocaleAttributes(), getUnicodeLocaleKeys(), and getUnicodeLocaleType(java.lang.String) which allow you to access Unicode locale attributes and key/type pairs directly. When represented as a string, the Unicode Locale Extension lists attributes alphabetically, followed by key/type sequences with keys listed alphabetically (the order of subtags comprising a key's type is fixed when the type is defined)

A well-formed locale key has the form [0-9a-zA-Z]{2}. A well-formed locale type has the form "" | [0-9a-zA-Z]{3,8} ('-' [0-9a-zA-Z]{3,8})* (it can be empty, or a series of subtags 3-8 alphanums in length). A well-formed locale attribute has the form [0-9a-zA-Z]{3,8} (it is a single subtag with the same form as a locale type subtag).

The Unicode locale extension specifies optional behavior in locale-sensitive services. Although the LDML specification defines various keys and values, actual locale-sensitive service implementations in a Java Runtime Environment might not support any particular Unicode locale attributes or key/type pairs.

Creating a Locale

There are several different ways to create a Locale object.

Builder

Using Locale.Builder you can construct a Locale object that conforms to BCP 47 syntax.

Constructors

The Locale class provides three constructors:

     Locale(java.lang.String)
     Locale(java.lang.String,java.lang.String)
     Locale(java.lang.String,java.lang.String,java.lang.String)
 
These constructors allow you to create a Locale object with language, country and variant, but you cannot specify script or extensions.
Factory Methods

The method forLanguageTag(java.lang.String) creates a Locale object for a well-formed BCP 47 language tag.

Locale Constants

The Locale class provides a number of convenient constants that you can use to create Locale objects for commonly used locales. For example, the following creates a Locale object for the United States:

     Locale.US
 

Use of Locale

Once you've created a Locale you can query it for information about itself. Use getCountry to get the country (or region) code and getLanguage to get the language code. You can use getDisplayCountry to get the name of the country suitable for displaying to the user. Similarly, you can use getDisplayLanguage to get the name of the language suitable for displaying to the user. Interestingly, the getDisplayXXX methods are themselves locale-sensitive and have two versions: one that uses the default locale and one that uses the locale specified as an argument.

The Java Platform provides a number of classes that perform locale-sensitive operations. For example, the NumberFormat class formats numbers, currency, and percentages in a locale-sensitive manner. Classes such as NumberFormat have several convenience methods for creating a default object of that type. For example, the NumberFormat class provides these three convenience methods for creating a default NumberFormat object:

     NumberFormat.getInstance()
     NumberFormat.getCurrencyInstance()
     NumberFormat.getPercentInstance()
 
Each of these methods has two variants; one with an explicit locale and one without; the latter uses the default locale:
     NumberFormat.getInstance(myLocale)
     NumberFormat.getCurrencyInstance(myLocale)
     NumberFormat.getPercentInstance(myLocale)
 
A Locale is the mechanism for identifying the kind of object (NumberFormat) that you would like to get. The locale is just a mechanism for identifying objects, not a container for the objects themselves.

Compatibility

In order to maintain compatibility with existing usage, Locale's constructors retain their behavior prior to the Java Runtime Environment version 1.7. The same is largely true for the toString method. Thus Locale objects can continue to be used as they were. In particular, clients who parse the output of toString into language, country, and variant fields can continue to do so (although this is strongly discouraged), although the variant field will have additional information in it if script or extensions are present.

In addition, BCP 47 imposes syntax restrictions that are not imposed by Locale's constructors. This means that conversions between some Locales and BCP 47 language tags cannot be made without losing information. Thus toLanguageTag cannot represent the state of locales whose language, country, or variant do not conform to BCP 47.

Because of these issues, it is recommended that clients migrate away from constructing non-conforming locales and use the forLanguageTag and Locale.Builder APIs instead. Clients desiring a string representation of the complete locale can then always rely on toLanguageTag for this purpose.

Special cases

For compatibility reasons, two non-conforming locales are treated as special cases. These are ja_JP_JP and th_TH_TH. These are ill-formed in BCP 47 since the variants are too short. To ease migration to BCP 47, these are treated specially during construction. These two cases (and only these) cause a constructor to generate an extension, all other values behave exactly as they did prior to Java 7.

Java has used ja_JP_JP to represent Japanese as used in Japan together with the Japanese Imperial calendar. This is now representable using a Unicode locale extension, by specifying the Unicode locale key ca (for "calendar") and type japanese. When the Locale constructor is called with the arguments "ja", "JP", "JP", the extension "u-ca-japanese" is automatically added.

Java has used th_TH_TH to represent Thai as used in Thailand together with Thai digits. This is also now representable using a Unicode locale extension, by specifying the Unicode locale key nu (for "number") and value thai. When the Locale constructor is called with the arguments "th", "TH", "TH", the extension "u-nu-thai" is automatically added.

Serialization

During serialization, writeObject writes all fields to the output stream, including extensions.

During deserialization, readResolve adds extensions as described in Special Cases, only for the two cases th_TH_TH and ja_JP_JP.

Legacy language codes

Locale's constructor has always converted three language codes to their earlier, obsoleted forms: he maps to iw, yi maps to ji, and id maps to in. This continues to be the case, in order to not break backwards compatibility.

The APIs added in 1.7 map between the old and new language codes, maintaining the old codes internal to Locale (so that getLanguage and toString reflect the old code), but using the new codes in the BCP 47 language tag APIs (so that toLanguageTag reflects the new one). This preserves the equivalence between Locales no matter which code or API is used to construct them. Java's default resource bundle lookup mechanism also implements this mapping, so that resources can be named using either convention, see ResourceBundle.Control.

Three-letter language/country(region) codes

The Locale constructors have always specified that the language and the country param be two characters in length, although in practice they have accepted any length. The specification has now been relaxed to allow language codes of two to eight characters and country (region) codes of two to three characters, and in particular, three-letter language codes and three-digit region codes as specified in the IANA Language Subtag Registry. For compatibility, the implementation still does not impose a length constraint.

 
 public final class Locale implements CloneableSerializable {
 
     static private final  Cache LOCALECACHE = new Cache();

    
Useful constant for language.
 
     static public final Locale ENGLISH = createConstant("en""");

    
Useful constant for language.
 
     static public final Locale FRENCH = createConstant("fr""");

    
Useful constant for language.
 
     static public final Locale GERMAN = createConstant("de""");

    
Useful constant for language.
 
     static public final Locale ITALIAN = createConstant("it""");

    
Useful constant for language.
 
     static public final Locale JAPANESE = createConstant("ja""");

    
Useful constant for language.
 
     static public final Locale KOREAN = createConstant("ko""");

    
Useful constant for language.
 
     static public final Locale CHINESE = createConstant("zh""");

    
Useful constant for language.
 
     static public final Locale SIMPLIFIED_CHINESE = createConstant("zh""CN");

    
Useful constant for language.
 
     static public final Locale TRADITIONAL_CHINESE = createConstant("zh""TW");

    
Useful constant for country.
 
     static public final Locale FRANCE = createConstant("fr""FR");

    
Useful constant for country.
 
     static public final Locale GERMANY = createConstant("de""DE");

    
Useful constant for country.
 
     static public final Locale ITALY = createConstant("it""IT");

    
Useful constant for country.
 
     static public final Locale JAPAN = createConstant("ja""JP");

    
Useful constant for country.
 
     static public final Locale KOREA = createConstant("ko""KR");

    
Useful constant for country.
 
     static public final Locale CHINA = ;

    
Useful constant for country.
 
     static public final Locale PRC = ;

    
Useful constant for country.
 
     static public final Locale TAIWAN = ;

    
Useful constant for country.
 
     static public final Locale UK = createConstant("en""GB");

    
Useful constant for country.
 
     static public final Locale US = createConstant("en""US");

    
Useful constant for country.
 
     static public final Locale CANADA = createConstant("en""CA");

    
Useful constant for country.
 
     static public final Locale CANADA_FRENCH = createConstant("fr""CA");

    
Useful constant for the root locale. The root locale is the locale whose language, country, and variant are empty ("") strings. This is regarded as the base locale of all locales, and is used as the language/country neutral locale for the locale sensitive operations.

Since:
1.6
 
     static public final Locale ROOT = createConstant("""");

    
The key for the private use extension ('x').

 
     static public final char PRIVATE_USE_EXTENSION = 'x';

    
The key for Unicode locale extension ('u').

 
     static public final char UNICODE_LOCALE_EXTENSION = 'u';

    
serialization ID
 
     static final long serialVersionUID = 9149081749638150636L;

    
Display types for retrieving localized names from the name providers.
 
     private static final int DISPLAY_LANGUAGE = 0;
     private static final int DISPLAY_COUNTRY  = 1;
     private static final int DISPLAY_VARIANT  = 2;
     private static final int DISPLAY_SCRIPT   = 3;

    
Private constructor used by getInstance method
 
     private Locale(BaseLocale baseLocaleLocaleExtensions extensions) {
         this. = baseLocale;
         this. = extensions;
     }

    
Construct a locale from language, country and variant. This constructor normalizes the language value to lowercase and the country value to uppercase.

Note:

  • ISO 639 is not a stable standard; some of the language codes it defines (specifically "iw", "ji", and "in") have changed. This constructor accepts both the old codes ("iw", "ji", and "in") and the new codes ("he", "yi", and "id"), but all other API on Locale will return only the OLD codes.
  • For backward compatibility reasons, this constructor does not make any syntactic checks on the input.
  • The two cases ("ja", "JP", "JP") and ("th", "TH", "TH") are handled specially, see Special Cases for more information.

Parameters:
language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag up to 8 characters in length. See the Locale class description about valid language values.
country An ISO 3166 alpha-2 country code or a UN M.49 numeric-3 area code. See the Locale class description about valid country values.
variant Any arbitrary value used to indicate a variation of a Locale. See the Locale class description for the details.
Throws:
java.lang.NullPointerException thrown if any argument is null.
 
     public Locale(String languageString countryString variant) {
         if (language== null || country == null || variant == null) {
             throw new NullPointerException();
         }
          = BaseLocale.getInstance(convertOldISOCodes(language), ""countryvariant);
          = getCompatibilityExtensions(language""countryvariant);
     }

    
Construct a locale from language and country. This constructor normalizes the language value to lowercase and the country value to uppercase.

Note:

  • ISO 639 is not a stable standard; some of the language codes it defines (specifically "iw", "ji", and "in") have changed. This constructor accepts both the old codes ("iw", "ji", and "in") and the new codes ("he", "yi", and "id"), but all other API on Locale will return only the OLD codes.
  • For backward compatibility reasons, this constructor does not make any syntactic checks on the input.

Parameters:
language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag up to 8 characters in length. See the Locale class description about valid language values.
country An ISO 3166 alpha-2 country code or a UN M.49 numeric-3 area code. See the Locale class description about valid country values.
Throws:
java.lang.NullPointerException thrown if either argument is null.
 
     public Locale(String languageString country) {
         this(languagecountry"");
     }

    
Construct a locale from a language code. This constructor normalizes the language value to lowercase.

Note:

  • ISO 639 is not a stable standard; some of the language codes it defines (specifically "iw", "ji", and "in") have changed. This constructor accepts both the old codes ("iw", "ji", and "in") and the new codes ("he", "yi", and "id"), but all other API on Locale will return only the OLD codes.
  • For backward compatibility reasons, this constructor does not make any syntactic checks on the input.

Parameters:
language An ISO 639 alpha-2 or alpha-3 language code, or a language subtag up to 8 characters in length. See the Locale class description about valid language values.
Throws:
java.lang.NullPointerException thrown if argument is null.
Since:
1.4
 
     public Locale(String language) {
         this(language"""");
     }

    
This method must be called only for creating the Locale.* constants due to making shortcuts.
 
     private static Locale createConstant(String langString country) {
         BaseLocale base = BaseLocale.createInstance(langcountry);
         return getInstance(basenull);
     }

    
Returns a Locale constructed from the given language, country and variant. If the same Locale instance is available in the cache, then that instance is returned. Otherwise, a new Locale instance is created and cached.

Parameters:
language lowercase 2 to 8 language code.
country uppercase two-letter ISO-3166 code and numric-3 UN M.49 area code.
variant vendor and browser specific code. See class description.
Returns:
the Locale instance requested
Throws:
java.lang.NullPointerException if any argument is null.
 
     static Locale getInstance(String languageString countryString variant) {
         return getInstance(language""countryvariantnull);
     }
 
     static Locale getInstance(String languageString scriptString country,
                                       String variantLocaleExtensions extensions) {
         if (language== null || script == null || country == null || variant == null) {
             throw new NullPointerException();
         }
 
         if (extensions == null) {
             extensions = getCompatibilityExtensions(languagescriptcountryvariant);
         }
 
         BaseLocale baseloc = BaseLocale.getInstance(languagescriptcountryvariant);
         return getInstance(baselocextensions);
     }
 
     static Locale getInstance(BaseLocale baselocLocaleExtensions extensions) {
         LocaleKey key = new LocaleKey(baselocextensions);
         return .get(key);
     }
 
     private static class Cache extends LocaleObjectCache<LocaleKeyLocale> {
         private Cache() {
         }
 
         @Override
         protected Locale createObject(LocaleKey key) {
             return new Locale(key.basekey.exts);
         }
     }
 
     private static final class LocaleKey {
         private final BaseLocale base;
         private final LocaleExtensions exts;
         private final int hash;
 
         private LocaleKey(BaseLocale baseLocaleLocaleExtensions extensions) {
              = baseLocale;
              = extensions;
 
             // Calculate the hash value here because it's always used.
             int h = .hashCode();
             if ( != null) {
                 h ^= .hashCode();
             }
              = h;
         }
 
         @Override
         public boolean equals(Object obj) {
             if (this == obj) {
                 return true;
             }
             if (!(obj instanceof LocaleKey)) {
                 return false;
             }
             LocaleKey other = (LocaleKey)obj;
             if ( != other.hash || !.equals(other.base)) {
                 return false;
             }
             if ( == null) {
                 return other.exts == null;
             }
             return .equals(other.exts);
         }
 
         @Override
         public int hashCode() {
             return ;
         }
     }

    
Gets the current value of the default locale for this instance of the Java Virtual Machine.

The Java Virtual Machine sets the default locale during startup based on the host environment. It is used by many locale-sensitive methods if no locale is explicitly specified. It can be changed using the setDefault method.

Returns:
the default locale for this instance of the Java Virtual Machine
 
     public static Locale getDefault() {
         // do not synchronize this method - see 4071298
         // it's OK if more than one default locale happens to be created
         if ( == null) {
             initDefault();
         }
         return ;
     }

    
Gets the current value of the default locale for the specified Category for this instance of the Java Virtual Machine.

The Java Virtual Machine sets the default locale during startup based on the host environment. It is used by many locale-sensitive methods if no locale is explicitly specified. It can be changed using the setDefault(Locale.Category, Locale) method.

Parameters:
category - the specified category to get the default locale
Returns:
the default locale for the specified Category for this instance of the Java Virtual Machine
Throws:
java.lang.NullPointerException - if category is null
Since:
1.7
See also:
setDefault(java.util.Locale.Category,java.util.Locale)
 
     public static Locale getDefault(Locale.Category category) {
         // do not synchronize this method - see 4071298
         // it's OK if more than one default locale happens to be created
         switch (category) {
         case :
             if ( == null) {
                 initDefault(category);
             }
             return ;
         case :
             if ( == null) {
                 initDefault(category);
             }
             return ;
         default:
             assert false"Unknown Category";
         }
         return getDefault();
     }
 
     private static void initDefault() {
         String languageregionscriptcountryvariant;
         language = AccessController.doPrivileged(
             new GetPropertyAction("user.language""en"));
         // for compatibility, check for old user.region property
         region = AccessController.doPrivileged(
             new GetPropertyAction("user.region"));
         if (region != null) {
             // region can be of form country, country_variant, or _variant
             int i = region.indexOf('_');
             if (i >= 0) {
                 country = region.substring(0, i);
                 variant = region.substring(i + 1);
             } else {
                 country = region;
                 variant = "";
             }
             script = "";
         } else {
             script = AccessController.doPrivileged(
                 new GetPropertyAction("user.script"""));
             country = AccessController.doPrivileged(
                 new GetPropertyAction("user.country"""));
             variant = AccessController.doPrivileged(
                 new GetPropertyAction("user.variant"""));
         }
          = getInstance(languagescriptcountryvariantnull);
     }
 
     private static void initDefault(Locale.Category category) {
         // make sure defaultLocale is initialized
         if ( == null) {
             initDefault();
         }
 
         Locale defaultCategoryLocale = getInstance(
             AccessController.doPrivileged(
                 new GetPropertyAction(category.languageKey.getLanguage())),
             AccessController.doPrivileged(
                 new GetPropertyAction(category.scriptKey.getScript())),
             AccessController.doPrivileged(
                 new GetPropertyAction(category.countryKey.getCountry())),
             AccessController.doPrivileged(
                 new GetPropertyAction(category.variantKey.getVariant())),
             null);
 
         switch (category) {
         case :
              = defaultCategoryLocale;
             break;
         case :
              = defaultCategoryLocale;
             break;
         }
     }

    
Sets the default locale for this instance of the Java Virtual Machine. This does not affect the host locale.

If there is a security manager, its checkPermission method is called with a PropertyPermission("user.language", "write") permission before the default locale is changed.

The Java Virtual Machine sets the default locale during startup based on the host environment. It is used by many locale-sensitive methods if no locale is explicitly specified.

Since changing the default locale may affect many different areas of functionality, this method should only be used if the caller is prepared to reinitialize locale-sensitive code running within the same Java Virtual Machine.

By setting the default locale with this method, all of the default locales for each Category are also set to the specified default locale.

Parameters:
newLocale the new default locale
Throws:
java.lang.SecurityException if a security manager exists and its checkPermission method doesn't allow the operation.
java.lang.NullPointerException if newLocale is null
See also:
java.lang.SecurityManager.checkPermission(java.security.Permission)
PropertyPermission
 
     public static synchronized void setDefault(Locale newLocale) {
         setDefault(.newLocale);
         setDefault(.newLocale);
          = newLocale;
     }

    
Sets the default locale for the specified Category for this instance of the Java Virtual Machine. This does not affect the host locale.

If there is a security manager, its checkPermission method is called with a PropertyPermission("user.language", "write") permission before the default locale is changed.

The Java Virtual Machine sets the default locale during startup based on the host environment. It is used by many locale-sensitive methods if no locale is explicitly specified.

Since changing the default locale may affect many different areas of functionality, this method should only be used if the caller is prepared to reinitialize locale-sensitive code running within the same Java Virtual Machine.

Parameters:
category - the specified category to set the default locale
newLocale - the new default locale
Throws:
java.lang.SecurityException - if a security manager exists and its checkPermission method doesn't allow the operation.
java.lang.NullPointerException - if category and/or newLocale is null
Since:
1.7
See also:
java.lang.SecurityManager.checkPermission(java.security.Permission)
PropertyPermission
getDefault(java.util.Locale.Category)
 
     public static synchronized void setDefault(Locale.Category category,
         Locale newLocale) {
         if (category == null)
             throw new NullPointerException("Category cannot be NULL");
         if (newLocale == null)
             throw new NullPointerException("Can't set default locale to NULL");
 
         SecurityManager sm = System.getSecurityManager();
         if (sm != nullsm.checkPermission(new PropertyPermission
                         ("user.language""write"));
         switch (category) {
         case :
              = newLocale;
             break;
         case :
              = newLocale;
             break;
         default:
             assert false"Unknown Category";
         }
     }

    
Returns an array of all installed locales. The returned array represents the union of locales supported by the Java runtime environment and by installed LocaleServiceProvider implementations. It must contain at least a Locale instance equal to Locale.US.

Returns:
An array of installed locales.
 
     public static Locale[] getAvailableLocales() {
         return LocaleServiceProviderPool.getAllAvailableLocales();
     }

    
Returns a list of all 2-letter country codes defined in ISO 3166. Can be used to create Locales.

Note: The Locale class also supports other codes for country (region), such as 3-letter numeric UN M.49 area codes. Therefore, the list returned by this method does not contain ALL valid codes that can be used to create Locales.

 
     public static String[] getISOCountries() {
         if ( == null) {
         }
         String[] result = new String[.];
         System.arraycopy(, 0, result, 0, .);
         return result;
     }

    
Returns a list of all 2-letter language codes defined in ISO 639. Can be used to create Locales.

Note:

  • ISO 639 is not a stable standard— some languages' codes have changed. The list this function returns includes both the new and the old codes for the languages whose codes have changed.
  • The Locale class also supports language codes up to 8 characters in length. Therefore, the list returned by this method does not contain ALL valid codes that can be used to create Locales.
 
     public static String[] getISOLanguages() {
         if ( == null) {
         }
         String[] result = new String[.];
         System.arraycopy(, 0, result, 0, .);
         return result;
     }
 
     private static final String[] getISO2Table(String table) {
         int len = table.length() / 5;
         String[] isoTable = new String[len];
         for (int i = 0, j = 0; i < leni++, j += 5) {
             isoTable[i] = table.substring(jj + 2);
         }
         return isoTable;
     }

    
Returns the language code of this Locale.

Note: ISO 639 is not a stable standard— some languages' codes have changed. Locale's constructor recognizes both the new and the old codes for the languages whose codes have changed, but this function always returns the old code. If you want to check for a specific language whose code has changed, don't do

 if (locale.getLanguage().equals("he")) // BAD!
    ...
 
Instead, do
 if (locale.getLanguage().equals(new Locale("he").getLanguage()))
    ...
 

Returns:
The language code, or the empty string if none is defined.
See also:
getDisplayLanguage()
    public String getLanguage() {
        return .getLanguage();
    }

    
Returns the script for this locale, which should either be the empty string or an ISO 15924 4-letter script code. The first letter is uppercase and the rest are lowercase, for example, 'Latn', 'Cyrl'.

Returns:
The script code, or the empty string if none is defined.
Since:
1.7
See also:
getDisplayScript()
    public String getScript() {
        return .getScript();
    }

    
Returns the country/region code for this locale, which should either be the empty string, an uppercase ISO 3166 2-letter code, or a UN M.49 3-digit code.

Returns:
The country/region code, or the empty string if none is defined.
See also:
getDisplayCountry()
    public String getCountry() {
        return .getRegion();
    }

    
Returns the variant code for this locale.

Returns:
The variant code, or the empty string if none is defined.
See also:
getDisplayVariant()
    public String getVariant() {
        return .getVariant();
    }

    
Returns the extension (or private use) value associated with the specified key, or null if there is no extension associated with the key. To be well-formed, the key must be one of [0-9A-Za-z]. Keys are case-insensitive, so for example 'z' and 'Z' represent the same extension.

Parameters:
key the extension key
Returns:
The extension, or null if this locale defines no extension for the specified key.
Throws:
java.lang.IllegalArgumentException if key is not well-formed
Since:
1.7
See also:
PRIVATE_USE_EXTENSION
UNICODE_LOCALE_EXTENSION
    public String getExtension(char key) {
        if (!LocaleExtensions.isValidKey(key)) {
            throw new IllegalArgumentException("Ill-formed extension key: " + key);
        }
        return ( == null) ? null : .getExtensionValue(key);
    }

    
Returns the set of extension keys associated with this locale, or the empty set if it has no extensions. The returned set is unmodifiable. The keys will all be lower-case.

Returns:
The set of extension keys, or the empty set if this locale has no extensions.
Since:
1.7
    public Set<CharactergetExtensionKeys() {
        if ( == null) {
            return Collections.emptySet();
        }
        return .getKeys();
    }

    
Returns the set of unicode locale attributes associated with this locale, or the empty set if it has no attributes. The returned set is unmodifiable.

Returns:
The set of attributes.
Since:
1.7
        if ( == null) {
            return Collections.emptySet();
        }
    }

    
Returns the Unicode locale type associated with the specified Unicode locale key for this locale. Returns the empty string for keys that are defined with no type. Returns null if the key is not defined. Keys are case-insensitive. The key must be two alphanumeric characters ([0-9a-zA-Z]), or an IllegalArgumentException is thrown.

Parameters:
key the Unicode locale key
Returns:
The Unicode locale type associated with the key, or null if the locale does not define the key.
Throws:
java.lang.IllegalArgumentException if the key is not well-formed
java.lang.NullPointerException if key is null
Since:
1.7
    public String getUnicodeLocaleType(String key) {
        if (!UnicodeLocaleExtension.isKey(key)) {
            throw new IllegalArgumentException("Ill-formed Unicode locale key: " + key);
        }
        return ( == null) ? null : .getUnicodeLocaleType(key);
    }

    
Returns the set of Unicode locale keys defined by this locale, or the empty set if this locale has none. The returned set is immutable. Keys are all lower case.

Returns:
The set of Unicode locale keys, or the empty set if this locale has no Unicode locale keywords.
Since:
1.7
    public Set<StringgetUnicodeLocaleKeys() {
        if ( == null) {
            return Collections.emptySet();
        }
        return .getUnicodeLocaleKeys();
    }

    
Package locale method returning the Locale's BaseLocale, used by ResourceBundle

Returns:
base locale of this Locale
        return ;
    }

    
Package private method returning the Locale's LocaleExtensions, used by ResourceBundle.

Returns:
locale exnteions of this Locale, or null if no extensions are defined
         return ;
     }

    
Returns a string representation of this Locale object, consisting of language, country, variant, script, and extensions as below:

language + "_" + country + "_" + (variant + "_#" | "#") + script + "-" + extensions
Language is always lower case, country is always upper case, script is always title case, and extensions are always lower case. Extensions and private use subtags will be in canonical order as explained in toLanguageTag().

When the locale has neither script nor extensions, the result is the same as in Java 6 and prior.

If both the language and country fields are missing, this function will return the empty string, even if the variant, script, or extensions field is present (you can't have a locale with just a variant, the variant must accompany a well-formed language or country code).

If script or extensions are present and variant is missing, no underscore is added before the "#".

This behavior is designed to support debugging and to be compatible with previous uses of toString that expected language, country, and variant fields only. To represent a Locale as a String for interchange purposes, use toLanguageTag().

Examples:

  • en
  • de_DE
  • _GB
  • en_US_WIN
  • de__POSIX
  • zh_CN_#Hans
  • zh_TW_#Hant-x-java
  • th_TH_TH_#u-nu-thai

Returns:
A string representation of the Locale, for debugging.
See also:
getDisplayName()
toLanguageTag()
    @Override
    public final String toString() {
        boolean l = (.getLanguage().length() != 0);
        boolean s = (.getScript().length() != 0);
        boolean r = (.getRegion().length() != 0);
        boolean v = (.getVariant().length() != 0);
        boolean e = ( != null && .getID().length() != 0);
        StringBuilder result = new StringBuilder(.getLanguage());
        if (r || (l && (v || s || e))) {
            result.append('_')
                .append(.getRegion()); // This may just append '_'
        }
        if (v && (l || r)) {
            result.append('_')
                .append(.getVariant());
        }
        if (s && (l || r)) {
            result.append("_#")
                .append(.getScript());
        }
        if (e && (l || r)) {
            result.append('_');
            if (!s) {
                result.append('#');
            }
            result.append(.getID());
        }
        return result.toString();
    }

    
Returns a well-formed IETF BCP 47 language tag representing this locale.

If this Locale has a language, country, or variant that does not satisfy the IETF BCP 47 language tag syntax requirements, this method handles these fields as described below:

Language: If language is empty, or not well-formed (for example "a" or "e2"), it will be emitted as "und" (Undetermined).

Country: If country is not well-formed (for example "12" or "USA"), it will be omitted.

Variant: If variant is well-formed, each sub-segment (delimited by '-' or '_') is emitted as a subtag. Otherwise:

  • if all sub-segments match [0-9a-zA-Z]{1,8} (for example "WIN" or "Oracle_JDK_Standard_Edition"), the first ill-formed sub-segment and all following will be appended to the private use subtag. The first appended subtag will be "lvariant", followed by the sub-segments in order, separated by hyphen. For example, "x-lvariant-WIN", "Oracle-x-lvariant-JDK-Standard-Edition".
  • if any sub-segment does not match [0-9a-zA-Z]{1,8}, the variant will be truncated and the problematic sub-segment and all following sub-segments will be omitted. If the remainder is non-empty, it will be emitted as a private use subtag as above (even if the remainder turns out to be well-formed). For example, "Solaris_isjustthecoolestthing" is emitted as "x-lvariant-Solaris", not as "solaris".

Special Conversions: Java supports some old locale representations, including deprecated ISO language codes, for compatibility. This method performs the following conversions:

  • Deprecated ISO language codes "iw", "ji", and "in" are converted to "he", "yi", and "id", respectively.
  • A locale with language "no", country "NO", and variant "NY", representing Norwegian Nynorsk (Norway), is converted to a language tag "nn-NO".

Note: Although the language tag created by this method is well-formed (satisfies the syntax requirements defined by the IETF BCP 47 specification), it is not necessarily a valid BCP 47 language tag. For example,

   new Locale("xx", "YY").toLanguageTag();
will return "xx-YY", but the language subtag "xx" and the region subtag "YY" are invalid because they are not registered in the IANA Language Subtag Registry.

Returns:
a BCP47 language tag representing the locale
Since:
1.7
See also:
forLanguageTag(java.lang.String)
    public String toLanguageTag() {
        LanguageTag tag = LanguageTag.parseLocale();
        StringBuilder buf = new StringBuilder();
        String subtag = tag.getLanguage();
        if (subtag.length() > 0) {
            buf.append(LanguageTag.canonicalizeLanguage(subtag));
        }
        subtag = tag.getScript();
        if (subtag.length() > 0) {
            buf.append(.);
            buf.append(LanguageTag.canonicalizeScript(subtag));
        }
        subtag = tag.getRegion();
        if (subtag.length() > 0) {
            buf.append(.);
            buf.append(LanguageTag.canonicalizeRegion(subtag));
        }
        List<String>subtags = tag.getVariants();
        for (String s : subtags) {
            buf.append(.);
            // preserve casing
            buf.append(s);
        }
        subtags = tag.getExtensions();
        for (String s : subtags) {
            buf.append(.);
            buf.append(LanguageTag.canonicalizeExtension(s));
        }
        subtag = tag.getPrivateuse();
        if (subtag.length() > 0) {
            if (buf.length() > 0) {
                buf.append(.);
            }
            buf.append(.).append(.);
            // preserve casing
            buf.append(subtag);
        }
        return buf.toString();
    }

    
Returns a locale for the specified IETF BCP 47 language tag string.

If the specified language tag contains any ill-formed subtags, the first such subtag and all following subtags are ignored. Compare to Locale.Builder.setLanguageTag(java.lang.String) which throws an exception in this case.

The following conversions are performed:

  • The language code "und" is mapped to language "".
  • The language codes "he", "yi", and "id" are mapped to "iw", "ji", and "in" respectively. (This is the same canonicalization that's done in Locale's constructors.)
  • The portion of a private use subtag prefixed by "lvariant", if any, is removed and appended to the variant field in the result locale (without case normalization). If it is then empty, the private use subtag is discarded:
         Locale loc;
         loc = Locale.forLanguageTag("en-US-x-lvariant-POSIX");
         loc.getVariant(); // returns "POSIX"
         loc.getExtension('x'); // returns null
    
         loc = Locale.forLanguageTag("de-POSIX-x-URP-lvariant-Abc-Def");
         loc.getVariant(); // returns "POSIX_Abc_Def"
         loc.getExtension('x'); // returns "urp"
     
  • When the languageTag argument contains an extlang subtag, the first such subtag is used as the language, and the primary language subtag and other extlang subtags are ignored:
         Locale.forLanguageTag("ar-aao").getLanguage(); // returns "aao"
         Locale.forLanguageTag("en-abc-def-us").toString(); // returns "abc_US"
     
  • Case is normalized except for variant tags, which are left unchanged. Language is normalized to lower case, script to title case, country to upper case, and extensions to lower case.
  • If, after processing, the locale would exactly match either ja_JP_JP or th_TH_TH with no extensions, the appropriate extensions are added as though the constructor had been called:
        Locale.forLanguageTag("ja-JP-x-lvariant-JP").toLanguageTag();
        // returns "ja-JP-u-ca-japanese-x-lvariant-JP"
        Locale.forLanguageTag("th-TH-x-lvariant-TH").toLanguageTag();
        // returns "th-TH-u-nu-thai-x-lvariant-TH"
     

This implements the 'Language-Tag' production of BCP47, and so supports grandfathered (regular and irregular) as well as private use language tags. Stand alone private use tags are represented as empty language and extension 'x-whatever', and grandfathered tags are converted to their canonical replacements where they exist.

Grandfathered tags with canonical replacements are as follows:

grandfathered tag modern replacement
art-lojban jbo
i-ami ami
i-bnn bnn
i-hak hak
i-klingon tlh
i-lux lb
i-navajo nv
i-pwn pwn
i-tao tao
i-tay tay
i-tsu tsu
no-bok nb
no-nyn nn
sgn-BE-FR sfb
sgn-BE-NL vgt
sgn-CH-DE sgg
zh-guoyu cmn
zh-hakka hak
zh-min-nan nan
zh-xiang hsn

Grandfathered tags with no modern replacement will be converted as follows:

grandfathered tag converts to
cel-gaulish xtg-x-cel-gaulish
en-GB-oed en-GB-x-oed
i-default en-x-i-default
i-enochian und-x-i-enochian
i-mingo see-x-i-mingo
zh-min nan-x-zh-min

For a list of all grandfathered tags, see the IANA Language Subtag Registry (search for "Type: grandfathered").

Note: there is no guarantee that toLanguageTag and forLanguageTag will round-trip.

Parameters:
languageTag the language tag
Returns:
The locale that best represents the language tag.
Throws:
java.lang.NullPointerException if languageTag is null
Since:
1.7
See also:
toLanguageTag()
Locale.Builder.setLanguageTag(java.lang.String)
    public static Locale forLanguageTag(String languageTag) {
        LanguageTag tag = LanguageTag.parse(languageTagnull);
        InternalLocaleBuilder bldr = new InternalLocaleBuilder();
        bldr.setLanguageTag(tag);
        BaseLocale base = bldr.getBaseLocale();
        LocaleExtensions exts = bldr.getLocaleExtensions();
        if (exts == null && base.getVariant().length() > 0) {
            exts = getCompatibilityExtensions(base.getLanguage(), base.getScript(),
                                              base.getRegion(), base.getVariant());
        }
        return getInstance(baseexts);
    }

    
Returns a three-letter abbreviation of this locale's language. If the language matches an ISO 639-1 two-letter code, the corresponding ISO 639-2/T three-letter lowercase code is returned. The ISO 639-2 language codes can be found on-line, see "Codes for the Representation of Names of Languages Part 2: Alpha-3 Code". If the locale specifies a three-letter language, the language is returned as is. If the locale does not specify a language the empty string is returned.

Returns:
A three-letter abbreviation of this locale's language.
Throws:
MissingResourceException Throws MissingResourceException if three-letter language abbreviation is not available for this locale.
    public String getISO3Language() throws MissingResourceException {
        String lang = .getLanguage();
        if (lang.length() == 3) {
            return lang;
        }
        String language3 = getISO3Code(lang.);
        if (language3 == null) {
            throw new MissingResourceException("Couldn't find 3-letter language code for "
                    + lang"FormatData_" + toString(), "ShortLanguage");
        }
        return language3;
    }

    
Returns a three-letter abbreviation for this locale's country. If the country matches an ISO 3166-1 alpha-2 code, the corresponding ISO 3166-1 alpha-3 uppercase code is returned. If the locale doesn't specify a country, this will be the empty string.

The ISO 3166-1 codes can be found on-line.

Returns:
A three-letter abbreviation of this locale's country.
Throws:
MissingResourceException Throws MissingResourceException if the three-letter country abbreviation is not available for this locale.
    public String getISO3Country() throws MissingResourceException {
        if (country3 == null) {
            throw new MissingResourceException("Couldn't find 3-letter country code for "
                    + .getRegion(), "FormatData_" + toString(), "ShortCountry");
        }
        return country3;
    }
    private static final String getISO3Code(String iso2CodeString table) {
        int codeLength = iso2Code.length();
        if (codeLength == 0) {
            return "";
        }
        int tableLength = table.length();
        int index = tableLength;
        if (codeLength == 2) {
            char c1 = iso2Code.charAt(0);
            char c2 = iso2Code.charAt(1);
            for (index = 0; index < tableLengthindex += 5) {
                if (table.charAt(index) == c1
                    && table.charAt(index + 1) == c2) {
                    break;
                }
            }
        }
        return index < tableLength ? table.substring(index + 2, index + 5) : null;
    }

    
Returns a name for the locale's language that is appropriate for display to the user. If possible, the name returned will be localized for the default locale. For example, if the locale is fr_FR and the default locale is en_US, getDisplayLanguage() will return "French"; if the locale is en_US and the default locale is fr_FR, getDisplayLanguage() will return "anglais". If the name returned cannot be localized for the default locale, (say, we don't have a Japanese name for Croatian), this function falls back on the English name, and uses the ISO code as a last-resort value. If the locale doesn't specify a language, this function returns the empty string.
    public final String getDisplayLanguage() {
    }

    
Returns a name for the locale's language that is appropriate for display to the user. If possible, the name returned will be localized according to inLocale. For example, if the locale is fr_FR and inLocale is en_US, getDisplayLanguage() will return "French"; if the locale is en_US and inLocale is fr_FR, getDisplayLanguage() will return "anglais". If the name returned cannot be localized according to inLocale, (say, we don't have a Japanese name for Croatian), this function falls back on the English name, and finally on the ISO code as a last-resort value. If the locale doesn't specify a language, this function returns the empty string.

Throws:
java.lang.NullPointerException if inLocale is null
    public String getDisplayLanguage(Locale inLocale) {
        return getDisplayString(.getLanguage(), inLocale);
    }

    
Returns a name for the the locale's script that is appropriate for display to the user. If possible, the name will be localized for the default locale. Returns the empty string if this locale doesn't specify a script code.

Returns:
the display name of the script code for the current default locale
Since:
1.7
    public String getDisplayScript() {
        return getDisplayScript(getDefault());
    }

    
Returns a name for the locale's script that is appropriate for display to the user. If possible, the name will be localized for the given locale. Returns the empty string if this locale doesn't specify a script code.

Returns:
the display name of the script code for the current default locale
Throws:
java.lang.NullPointerException if inLocale is null
Since:
1.7
    public String getDisplayScript(Locale inLocale) {
        return getDisplayString(.getScript(), inLocale);
    }

    
Returns a name for the locale's country that is appropriate for display to the user. If possible, the name returned will be localized for the default locale. For example, if the locale is fr_FR and the default locale is en_US, getDisplayCountry() will return "France"; if the locale is en_US and the default locale is fr_FR, getDisplayCountry() will return "Etats-Unis". If the name returned cannot be localized for the default locale, (say, we don't have a Japanese name for Croatia), this function falls back on the English name, and uses the ISO code as a last-resort value. If the locale doesn't specify a country, this function returns the empty string.
    public final String getDisplayCountry() {
    }

    
Returns a name for the locale's country that is appropriate for display to the user. If possible, the name returned will be localized according to inLocale. For example, if the locale is fr_FR and inLocale is en_US, getDisplayCountry() will return "France"; if the locale is en_US and inLocale is fr_FR, getDisplayCountry() will return "Etats-Unis". If the name returned cannot be localized according to inLocale. (say, we don't have a Japanese name for Croatia), this function falls back on the English name, and finally on the ISO code as a last-resort value. If the locale doesn't specify a country, this function returns the empty string.

Throws:
java.lang.NullPointerException if inLocale is null
    public String getDisplayCountry(Locale inLocale) {
        return getDisplayString(.getRegion(), inLocale);
    }
    private String getDisplayString(String codeLocale inLocaleint type) {
        if (code.length() == 0) {
            return "";
        }
        if (inLocale == null) {
            throw new NullPointerException();
        }
        try {
            OpenListResourceBundle bundle = LocaleData.getLocaleNames(inLocale);
            String key = (type ==  ? "%%"+code : code);
            String result = null;
            // Check whether a provider can provide an implementation that's closer
            // to the requested locale than what the Java runtime itself can provide.
            LocaleServiceProviderPool pool =
                LocaleServiceProviderPool.getPool(LocaleNameProvider.class);
            if (pool.hasProviders()) {
                result = pool.getLocalizedObject(
                                    .,
                                    inLocalebundlekey,
                                    typecode);
            }
            if (result == null) {
                result = bundle.getString(key);
            }
            if (result != null) {
                return result;
            }
        }
        catch (Exception e) {
            // just fall through
        }
        return code;
    }

    
Returns a name for the locale's variant code that is appropriate for display to the user. If possible, the name will be localized for the default locale. If the locale doesn't specify a variant code, this function returns the empty string.
    public final String getDisplayVariant() {
    }

    
Returns a name for the locale's variant code that is appropriate for display to the user. If possible, the name will be localized for inLocale. If the locale doesn't specify a variant code, this function returns the empty string.

Throws:
java.lang.NullPointerException if inLocale is null
    public String getDisplayVariant(Locale inLocale) {
        if (.getVariant().length() == 0)
            return "";
        OpenListResourceBundle bundle = LocaleData.getLocaleNames(inLocale);
        String names[] = getDisplayVariantArray(bundleinLocale);
        // Get the localized patterns for formatting a list, and use
        // them to format the list.
        String listPattern = null;
        String listCompositionPattern = null;
        try {
            listPattern = bundle.getString("ListPattern");
            listCompositionPattern = bundle.getString("ListCompositionPattern");
        } catch (MissingResourceException e) {
        }
        return formatList(nameslistPatternlistCompositionPattern);
    }

    
Returns a name for the locale that is appropriate for display to the user. This will be the values returned by getDisplayLanguage(), getDisplayScript(), getDisplayCountry(), and getDisplayVariant() assembled into a single string. The the non-empty values are used in order, with the second and subsequent names in parentheses. For example:
language (script, country, variant)
language (country)
language (variant)
script (country)
country
depending on which fields are specified in the locale. If the language, sacript, country, and variant fields are all empty, this function returns the empty string.
    public final String getDisplayName() {
        return getDisplayName(getDefault(.));
    }

    
Returns a name for the locale that is appropriate for display to the user. This will be the values returned by getDisplayLanguage(), getDisplayScript(),getDisplayCountry(), and getDisplayVariant() assembled into a single string. The non-empty values are used in order, with the second and subsequent names in parentheses. For example:
language (script, country, variant)
language (country)
language (variant)
script (country)
country
depending on which fields are specified in the locale. If the language, script, country, and variant fields are all empty, this function returns the empty string.

Throws:
java.lang.NullPointerException if inLocale is null
    public String getDisplayName(Locale inLocale) {
        OpenListResourceBundle bundle = LocaleData.getLocaleNames(inLocale);
        String languageName = getDisplayLanguage(inLocale);
        String scriptName = getDisplayScript(inLocale);
        String countryName = getDisplayCountry(inLocale);
        String[] variantNames = getDisplayVariantArray(bundleinLocale);
        // Get the localized patterns for formatting a display name.
        String displayNamePattern = null;
        String listPattern = null;
        String listCompositionPattern = null;
        try {
            displayNamePattern = bundle.getString("DisplayNamePattern");
            listPattern = bundle.getString("ListPattern");
            listCompositionPattern = bundle.getString("ListCompositionPattern");
        } catch (MissingResourceException e) {
        }
        // The display name consists of a main name, followed by qualifiers.
        // Typically, the format is "MainName (Qualifier, Qualifier)" but this
        // depends on what pattern is stored in the display locale.
        String   mainName       = null;
        String[] qualifierNames = null;
        // The main name is the language, or if there is no language, the script,
        // then if no script, the country. If there is no language/script/country
        // (an anomalous situation) then the display name is simply the variant's
        // display name.
        if (languageName.length() == 0 && scriptName.length() == 0 && countryName.length() == 0) {
            if (variantNames.length == 0) {
                return "";
            } else {
                return formatList(variantNameslistPatternlistCompositionPattern);
            }
        }
        ArrayList<Stringnames = new ArrayList<>(4);
        if (languageName.length() != 0) {
            names.add(languageName);
        }
        if (scriptName.length() != 0) {
            names.add(scriptName);
        }
        if (countryName.length() != 0) {
            names.add(countryName);
        }
        if (variantNames.length != 0) {
            for (String var : variantNames) {
                names.add(var);
            }
        }
        // The first one in the main name
        mainName = names.get(0);
        // Others are qualifiers
        int numNames = names.size();
        qualifierNames = (numNames > 1) ?
                names.subList(1, numNames).toArray(new String[numNames - 1]) : new String[0];
        // Create an array whose first element is the number of remaining
        // elements.  This serves as a selector into a ChoiceFormat pattern from
        // the resource.  The second and third elements are the main name and
        // the qualifier; if there are no qualifiers, the third element is
        // unused by the format pattern.
        Object[] displayNames = {
            new Integer(qualifierNames.length != 0 ? 2 : 1),
            mainName,
            // We could also just call formatList() and have it handle the empty
            // list case, but this is more efficient, and we want it to be
            // efficient since all the language-only locales will not have any
            // qualifiers.
            qualifierNames.length != 0 ? formatList(qualifierNameslistPatternlistCompositionPattern) : null
        };
        if (displayNamePattern != null) {
            return new MessageFormat(displayNamePattern).format(displayNames);
        }
        else {
            // If we cannot get the message format pattern, then we use a simple
            // hard-coded pattern.  This should not occur in practice unless the
            // installation is missing some core files (FormatData etc.).
            StringBuilder result = new StringBuilder();
            result.append((String)displayNames[1]);
            if (displayNames.length > 2) {
                result.append(" (");
                result.append((String)displayNames[2]);
                result.append(')');
            }
            return result.toString();
        }
    }

    
Overrides Cloneable.
    public Object clone()
    {
        try {
            Locale that = (Locale)super.clone();
            return that;
        } catch (CloneNotSupportedException e) {
            throw new InternalError();
        }
    }

    
Override hashCode. Since Locales are often used in hashtables, caches the value for speed.
    @Override
    public int hashCode() {
        int hc = ;
        if (hc == 0) {
            hc = .hashCode();
            if ( != null) {
                hc ^= .hashCode();
            }
             = hc;
        }
        return hc;
    }
    // Overrides

    
Returns true if this Locale is equal to another object. A Locale is deemed equal to another Locale with identical language, script, country, variant and extensions, and unequal to all other objects.

Returns:
true if this Locale is equal to the specified object.
    @Override
    public boolean equals(Object obj) {
        if (this == obj)                      // quick check
            return true;
        if (!(obj instanceof Locale))
            return false;
        BaseLocale otherBase = ((Locale)obj).;
        if (!.equals(otherBase)) {
            return false;
        }
        if ( == null) {
            return ((Locale)obj). == null;
        }
        return .equals(((Locale)obj).);
    }
    // ================= privates =====================================
    private transient BaseLocale baseLocale;
    private transient LocaleExtensions localeExtensions;

    
Calculated hashcode
    private transient volatile int hashCodeValue = 0;
    private static Locale defaultLocale = null;
    private static Locale defaultDisplayLocale = null;
    private static Locale defaultFormatLocale = null;

    
Return an array of the display names of the variant.

Parameters:
bundle the ResourceBundle to use to get the display names
Returns:
an array of display names, possible of zero length.
    private String[] getDisplayVariantArray(OpenListResourceBundle bundleLocale inLocale) {
        // Split the variant name into tokens separated by '_'.
        StringTokenizer tokenizer = new StringTokenizer(.getVariant(), "_");
        String[] names = new String[tokenizer.countTokens()];
        // For each variant token, lookup the display name.  If
        // not found, use the variant name itself.
        for (int i=0; i<names.length; ++i) {
            names[i] = getDisplayString(tokenizer.nextToken(),
                                inLocale);
        }
        return names;
    }

    
Format a list using given pattern strings. If either of the patterns is null, then a the list is formatted by concatenation with the delimiter ','.

Parameters:
stringList the list of strings to be formatted.
listPattern should create a MessageFormat taking 0-3 arguments and formatting them into a list.
listCompositionPattern should take 2 arguments and is used by composeList.
Returns:
a string representing the list.
    private static String formatList(String[] stringListString listPatternString listCompositionPattern) {
        // If we have no list patterns, compose the list in a simple,
        // non-localized way.
        if (listPattern == null || listCompositionPattern == null) {
            StringBuffer result = new StringBuffer();
            for (int i=0; i<stringList.length; ++i) {
                if (i>0) result.append(',');
                result.append(stringList[i]);
            }
            return result.toString();
        }
        // Compose the list down to three elements if necessary
        if (stringList.length > 3) {
            MessageFormat format = new MessageFormat(listCompositionPattern);
            stringList = composeList(formatstringList);
        }
        // Rebuild the argument list with the list length as the first element
        Object[] args = new Object[stringList.length + 1];
        System.arraycopy(stringList, 0, args, 1, stringList.length);
        args[0] = new Integer(stringList.length);
        // Format it using the pattern in the resource
        MessageFormat format = new MessageFormat(listPattern);
        return format.format(args);
    }

    
Given a list of strings, return a list shortened to three elements. Shorten it by applying the given format to the first two elements recursively.

Parameters:
format a format which takes two arguments
list a list of strings
Returns:
if the list is three elements or shorter, the same list; otherwise, a new list of three elements.
    private static String[] composeList(MessageFormat formatString[] list) {
        if (list.length <= 3) return list;
        // Use the given format to compose the first two elements into one
        String[] listItems = { list[0], list[1] };
        String newItem = format.format(listItems);
        // Form a new list one element shorter
        String[] newList = new String[list.length-1];
        System.arraycopy(list, 2, newList, 1, newList.length-1);
        newList[0] = newItem;
        // Recurse
        return composeList(formatnewList);
    }

    

SerialField:
language String language subtag in lower case. (See getLanguage())
SerialField:
country String country subtag in upper case. (See getCountry())
SerialField:
variant String variant subtags separated by LOWLINE characters. (See getVariant())
SerialField:
hashcode int deprecated, for forward compatibility only
SerialField:
script String script subtag in title case (See getScript())
SerialField:
extensions String canonical representation of extensions, that is, BCP47 extensions in alphabetical order followed by BCP47 private use subtags, all in lower case letters separated by HYPHEN-MINUS characters. (See getExtensionKeys(), getExtension(char))
    private static final ObjectStreamField[] serialPersistentFields = {
        new ObjectStreamField("language"String.class),
        new ObjectStreamField("country"String.class),
        new ObjectStreamField("variant"String.class),
        new ObjectStreamField("hashcode"int.class),
        new ObjectStreamField("script"String.class),
        new ObjectStreamField("extensions"String.class),
    };

    
Serializes this Locale to the specified ObjectOutputStream.

Parameters:
out the ObjectOutputStream to write
Throws:
java.io.IOException
Since:
1.7
    private void writeObject(ObjectOutputStream outthrows IOException {
        ObjectOutputStream.PutField fields = out.putFields();
        fields.put("language".getLanguage());
        fields.put("script".getScript());
        fields.put("country".getRegion());
        fields.put("variant".getVariant());
        fields.put("extensions" == null ? "" : .getID());
        fields.put("hashcode", -1); // place holder just for backward support
        out.writeFields();
    }

    
Deserializes this Locale.

Parameters:
in the ObjectInputStream to read
Throws:
java.io.IOException
java.lang.ClassNotFoundException
IllformdLocaleException
Since:
1.7
    private void readObject(ObjectInputStream inthrows IOExceptionClassNotFoundException {
        ObjectInputStream.GetField fields = in.readFields();
        String language = (String)fields.get("language""");
        String script = (String)fields.get("script""");
        String country = (String)fields.get("country""");
        String variant = (String)fields.get("variant""");
        String extStr = (String)fields.get("extensions""");
         = BaseLocale.getInstance(convertOldISOCodes(language), scriptcountryvariant);
        if (extStr.length() > 0) {
            try {
                InternalLocaleBuilder bldr = new InternalLocaleBuilder();
                bldr.setExtensions(extStr);
                 = bldr.getLocaleExtensions();
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage());
            }
        } else {
             = null;
        }
    }

    
Returns a cached Locale instance equivalent to the deserialized Locale. When serialized language, country and variant fields read from the object data stream are exactly "ja", "JP", "JP" or "th", "TH", "TH" and script/extensions fields are empty, this method supplies UNICODE_LOCALE_EXTENSION "ca"/"japanese" (calendar type is "japanese") or "nu"/"thai" (number script type is "thai"). See Special Cases for more information.

Returns:
an instance of Locale equivalent to the deserialized Locale.
Throws:
java.io.ObjectStreamException
    private Object readResolve() throws java.io.ObjectStreamException {
                .getRegion(), .getVariant(), );
    }
    private static volatile String[] isoLanguages = null;
    private static volatile String[] isoCountries = null;
    private static String convertOldISOCodes(String language) {
        // we accept both the old and the new ISO codes for the languages whose ISO
        // codes have changed, but we always store the OLD code, for backward compatibility
        language = LocaleUtils.toLowerString(language).intern();
        if (language == "he") {
            return "iw";
        } else if (language == "yi") {
            return "ji";
        } else if (language == "id") {
            return "in";
        } else {
            return language;
        }
    }
    private static LocaleExtensions getCompatibilityExtensions(String language,
                                                               String script,
                                                               String country,
                                                               String variant) {
        LocaleExtensions extensions = null;
        // Special cases for backward compatibility support
        if (LocaleUtils.caseIgnoreMatch(language"ja")
                && script.length() == 0
                && LocaleUtils.caseIgnoreMatch(country"jp")
                && "JP".equals(variant)) {
            // ja_JP_JP -> u-ca-japanese (calendar = japanese)
            extensions = .;
        } else if (LocaleUtils.caseIgnoreMatch(language"th")
                && script.length() == 0
                && LocaleUtils.caseIgnoreMatch(country"th")
                && "TH".equals(variant)) {
            // th_TH_TH -> u-nu-thai (numbersystem = thai)
            extensions = .;
        }
        return extensions;
    }

    
Obtains a localized locale names from a LocaleNameProvider implementation.
    private static class LocaleNameGetter
        private static final LocaleNameGetter INSTANCE = new LocaleNameGetter();
        public String getObject(LocaleNameProvider localeNameProvider,
                                Locale locale,
                                String key,
                                Object... params) {
            assert params.length == 2;
            int type = (Integer)params[0];
            String code = (String)params[1];
            switch(type) {
            case :
                return localeNameProvider.getDisplayLanguage(codelocale);
            case :
                return localeNameProvider.getDisplayCountry(codelocale);
            case :
                return localeNameProvider.getDisplayVariant(codelocale);
            case :
                return localeNameProvider.getDisplayScript(codelocale);
            default:
                assert false// shouldn't happen
            }
            return null;
        }
    }

    
Enum for locale categories. These locale categories are used to get/set the default locale for the specific functionality represented by the category.

    public enum Category {

        
Category used to represent the default locale for displaying user interfaces.
        DISPLAY("user.language.display",
                "user.script.display",
                "user.country.display",
                "user.variant.display"),

        
Category used to represent the default locale for formatting dates, numbers, and/or currencies.
        FORMAT("user.language.format",
               "user.script.format",
               "user.country.format",
               "user.variant.format");
        Category(String languageKeyString scriptKeyString countryKeyString variantKey) {
            this. = languageKey;
            this. = scriptKey;
            this. = countryKey;
            this. = variantKey;
        }
        final String languageKey;
        final String scriptKey;
        final String countryKey;
        final String variantKey;
    }

    
Builder is used to build instances of Locale from values configured by the setters. Unlike the Locale constructors, the Builder checks if a value configured by a setter satisfies the syntax requirements defined by the Locale class. A Locale object created by a Builder is well-formed and can be transformed to a well-formed IETF BCP 47 language tag without losing information.

Note: The Locale class does not provide any syntactic restrictions on variant, while BCP 47 requires each variant subtag to be 5 to 8 alphanumerics or a single numeric followed by 3 alphanumerics. The method setVariant throws IllformedLocaleException for a variant that does not satisfy this restriction. If it is necessary to support such a variant, use a Locale constructor. However, keep in mind that a Locale object created this way might lose the variant information when transformed to a BCP 47 language tag.

The following example shows how to create a Locale object with the Builder.

     Locale aLocale = new Builder().setLanguage("sr").setScript("Latn").setRegion("RS").build();
 

Builders can be reused; clear() resets all fields to their default values.

    public static final class Builder {
        private final InternalLocaleBuilder localeBuilder;

        
Constructs an empty Builder. The default value of all fields, extensions, and private use information is the empty string.
        public Builder() {
             = new InternalLocaleBuilder();
        }

        
Resets the Builder to match the provided locale. Existing state is discarded.

All fields of the locale must be well-formed, see Locale.

Locales with any ill-formed fields cause IllformedLocaleException to be thrown, except for the following three cases which are accepted for compatibility reasons:

  • Locale("ja", "JP", "JP") is treated as "ja-JP-u-ca-japanese"
  • Locale("th", "TH", "TH") is treated as "th-TH-u-nu-thai"
  • Locale("no", "NO", "NY") is treated as "nn-NO"

Parameters:
locale the locale
Returns:
This builder.
Throws:
IllformedLocaleException if locale has any ill-formed fields.
java.lang.NullPointerException if locale is null.
        public Builder setLocale(Locale locale) {
            try {
                .setLocale(locale.baseLocalelocale.localeExtensions);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Resets the Builder to match the provided IETF BCP 47 language tag. Discards the existing state. Null and the empty string cause the builder to be reset, like clear(). Grandfathered tags (see Locale.forLanguageTag(java.lang.String)) are converted to their canonical form before being processed. Otherwise, the language tag must be well-formed (see Locale) or an exception is thrown (unlike Locale.forLanguageTag, which just discards ill-formed and following portions of the tag).

Parameters:
languageTag the language tag
Returns:
This builder.
Throws:
IllformedLocaleException if languageTag is ill-formed
See also:
Locale.forLanguageTag(java.lang.String)
        public Builder setLanguageTag(String languageTag) {
            ParseStatus sts = new ParseStatus();
            LanguageTag tag = LanguageTag.parse(languageTagsts);
            if (sts.isError()) {
                throw new IllformedLocaleException(sts.getErrorMessage(), sts.getErrorIndex());
            }
            .setLanguageTag(tag);
            return this;
        }

        
Sets the language. If language is the empty string or null, the language in this Builder is removed. Otherwise, the language must be well-formed or an exception is thrown.

The typical language value is a two or three-letter language code as defined in ISO639.

Parameters:
language the language
Returns:
This builder.
Throws:
IllformedLocaleException if language is ill-formed
        public Builder setLanguage(String language) {
            try {
                .setLanguage(language);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Sets the script. If script is null or the empty string, the script in this Builder is removed. Otherwise, the script must be well-formed or an exception is thrown.

The typical script value is a four-letter script code as defined by ISO 15924.

Parameters:
script the script
Returns:
This builder.
Throws:
IllformedLocaleException if script is ill-formed
        public Builder setScript(String script) {
            try {
                .setScript(script);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Sets the region. If region is null or the empty string, the region in this Builder is removed. Otherwise, the region must be well-formed or an exception is thrown.

The typical region value is a two-letter ISO 3166 code or a three-digit UN M.49 area code.

The country value in the Locale created by the Builder is always normalized to upper case.

Parameters:
region the region
Returns:
This builder.
Throws:
IllformedLocaleException if region is ill-formed
        public Builder setRegion(String region) {
            try {
                .setRegion(region);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Sets the variant. If variant is null or the empty string, the variant in this Builder is removed. Otherwise, it must consist of one or more well-formed subtags, or an exception is thrown.

Note: This method checks if variant satisfies the IETF BCP 47 variant subtag's syntax requirements, and normalizes the value to lowercase letters. However, the Locale class does not impose any syntactic restriction on variant, and the variant value in Locale is case sensitive. To set such a variant, use a Locale constructor.

Parameters:
variant the variant
Returns:
This builder.
Throws:
IllformedLocaleException if variant is ill-formed
        public Builder setVariant(String variant) {
            try {
                .setVariant(variant);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Sets the extension for the given key. If the value is null or the empty string, the extension is removed. Otherwise, the extension must be well-formed or an exception is thrown.

Note: The key UNICODE_LOCALE_EXTENSION ('u') is used for the Unicode locale extension. Setting a value for this key replaces any existing Unicode locale key/type pairs with those defined in the extension.

Note: The key PRIVATE_USE_EXTENSION ('x') is used for the private use code. To be well-formed, the value for this key needs only to have subtags of one to eight alphanumeric characters, not two to eight as in the general case.

Parameters:
key the extension key
value the extension value
Returns:
This builder.
Throws:
IllformedLocaleException if key is illegal or value is ill-formed
See also:
setUnicodeLocaleKeyword(java.lang.String,java.lang.String)
        public Builder setExtension(char keyString value) {
            try {
                .setExtension(keyvalue);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Sets the Unicode locale keyword type for the given key. If the type is null, the Unicode keyword is removed. Otherwise, the key must be non-null and both key and type must be well-formed or an exception is thrown.

Keys and types are converted to lower case.

Note:Setting the 'u' extension via setExtension(char,java.lang.String) replaces all Unicode locale keywords with those defined in the extension.

Parameters:
key the Unicode locale key
type the Unicode locale type
Returns:
This builder.
Throws:
IllformedLocaleException if key or type is ill-formed
java.lang.NullPointerException if key is null
See also:
setExtension(char,java.lang.String)
        public Builder setUnicodeLocaleKeyword(String keyString type) {
            try {
                .setUnicodeLocaleKeyword(keytype);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Adds a unicode locale attribute, if not already present, otherwise has no effect. The attribute must not be null and must be well-formed or an exception is thrown.

Parameters:
attribute the attribute
Returns:
This builder.
Throws:
java.lang.NullPointerException if attribute is null
IllformedLocaleException if attribute is ill-formed
See also:
setExtension(char,java.lang.String)
        public Builder addUnicodeLocaleAttribute(String attribute) {
            try {
                .addUnicodeLocaleAttribute(attribute);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Removes a unicode locale attribute, if present, otherwise has no effect. The attribute must not be null and must be well-formed or an exception is thrown.

Attribute comparision for removal is case-insensitive.

Parameters:
attribute the attribute
Returns:
This builder.
Throws:
java.lang.NullPointerException if attribute is null
IllformedLocaleException if attribute is ill-formed
See also:
setExtension(char,java.lang.String)
        public Builder removeUnicodeLocaleAttribute(String attribute) {
            try {
                .removeUnicodeLocaleAttribute(attribute);
            } catch (LocaleSyntaxException e) {
                throw new IllformedLocaleException(e.getMessage(), e.getErrorIndex());
            }
            return this;
        }

        
Resets the builder to its initial, empty state.

Returns:
This builder.
        public Builder clear() {
            .clear();
            return this;
        }

        
Resets the extensions to their initial, empty state. Language, script, region and variant are unchanged.

Returns:
This builder.
See also:
setExtension(char,java.lang.String)
        public Builder clearExtensions() {
            .clearExtensions();
            return this;
        }

        
Returns an instance of Locale created from the fields set on this builder.

This applies the conversions listed in Locale.forLanguageTag(java.lang.String) when constructing a Locale. (Grandfathered tags are handled in setLanguageTag(java.lang.String).)

Returns:
A Locale.
        public Locale build() {
            BaseLocale baseloc = .getBaseLocale();
            LocaleExtensions extensions = .getLocaleExtensions();
            if (extensions == null && baseloc.getVariant().length() > 0) {
                extensions = getCompatibilityExtensions(baseloc.getLanguage(), baseloc.getScript(),
                        baseloc.getRegion(), baseloc.getVariant());
            }
            return Locale.getInstance(baselocextensions);
        }
    }
New to GrepCode? Check out our FAQ X