Java Locale .getDisplayCountry ( Locale inLocale)

Syntax

Locale.getDisplayCountry(Locale inLocale) has the following syntax.

public String getDisplayCountry(Locale inLocale)

Example

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


/* w  ww .j a  v  a 2 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);

      //display name - result is based on inLocale
      System.out.println("Display Name:"
              + locale.getDisplayCountry(new Locale("GERMAN", "GERMANY")));

   }
}

The code above generates the following result.