Java.util.Locale.getDisplayCountry() Method
Advertisements
Description
The java.util.Locale.getDisplayCountry() method returns a name for the locale's country that is appropriate for display to the user.
Declaration
Following is the declaration for java.util.Locale.getDisplayCountry() method
public final String getDisplayCountry()
Parameters
NA
Return Value
This method does not return a value.
Exception
NA
Example
The following example shows the usage of java.util.Locale.getDisplayCountry() method.
package com.tutorialspoint;
import java.util.*;
public class LocaleDemo {
public static void main(String[] args) {
// create a new locale
Locale locale = new Locale("ENGLISH", "US");
// print locale
System.out.println("Locale:" + locale);
// print locale display name
System.out.println("Display Name:" + locale.getDisplayCountry());
}
}
Let us compile and run the above program, this will produce the following result:
Locale:english_US Display Name:United States