Java API Tutorial - 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.

//  w w w.  j  a v a2s.  co  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);

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

   }
}

The code above generates the following result.