The Java Locale getExtensionKeys() method 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.
DeclarationFollowing is the declaration for java.util.Locale.getExtensionKeys() method
public Set<Character&t; getExtensionKeys()Parameters
NA
Return ValueThis method returns the set of extension keys, or the empty set if this locale has no extensions.
ExceptionIllegalArgumentException −
Getting Extension Keys from a Locale ExampleThe following example shows the usage of Java Locale getExtensionKeys() method. We're creating a locale using forLanguageTag and print the extension keys as specified in the tag and we've created locale using another tag without extension keys and printed an empty set.
package com.tutorialspoint; import java.util.Locale; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = Locale.forLanguageTag("und-a-xx-yy-b-zz-ww"); // print the extension keys System.out.println("Extension keys:" + locale.getExtensionKeys()); locale = Locale.forLanguageTag("und"); // print the extension keys System.out.println("Extension keys:" + locale.getExtensionKeys()); } }Output
Let us compile and run the above program, this will produce the following result −
Extension keys:[a, b] Extension keys:[]
java_util_locale.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4