Java Locale.getDisplayName(Locale inLocale)
Syntax
Locale.getDisplayName(Locale inLocale) has the following syntax.
public String getDisplayName(Locale inLocale)
Example
In the following code shows how to use Locale.getDisplayName(Locale inLocale) method.
/*from w w w . j ava2 s . c o m*/
import java.util.Locale;
public class Main {
public static void main(String[] args) {
Locale locale = new Locale("ENGLISH", "US");
System.out.println("Locale:" + locale);
// print display name for locale - based on inLocale
System.out.println("Name:"
+ locale.getDisplayName(new Locale("GERMAN", "GERMANY")));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »