The Java Locale getUnicodeLocaleAttributes() method 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.
DeclarationFollowing is the declaration for java.util.Locale.getUnicodeLocaleAttributes() method
public Set<String> getUnicodeLocaleAttributes()Parameters
NA
Return ValueThis method returns the set of attributes.
ExceptionNA
Getting Unicode Locale Attributes from a Locale ExampleThe following example shows the usage of Java Locale getUnicodeLocaleAttributes() methods. We're creating a locale with an attribute as email which is retrieved using getUnicodeLocaleAttributes and printed.
package com.tutorialspoint; import java.util.Locale; public class LocaleDemo { public static void main(String[] args) { // create a new locale Locale locale = Locale.forLanguageTag("de-DE-u-email-co-phonebk-x-linux"); // print this locale System.out.println("Locale:" + locale); // print the set of attributes of this locale System.out.println("Attributes:" + locale.getUnicodeLocaleAttributes()); } }Output
Let us compile and run the above program, this will produce the following result −
Locale:de_DE_#u-email-co-phonebk-x-linux Attributes:[email]
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