Java Locale.getDisplayCountry()

Syntax

Locale.getDisplayCountry() has the following syntax.

public final String getDisplayCountry()

Example

In the following code shows how to use Locale.getDisplayCountry() method.


//from  w w  w. ja  v a  2 s.c om


import java.util.Locale;

public class Main {

   public static void main(String[] args) {
      Locale locale = new Locale("ENGLISH", "US");

      System.out.println("Locale:" + locale);

      System.out.println("Display Name:" + locale.getDisplayCountry());

   }
}

The code above generates the following result.