Java API Tutorial - 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  a  v  a 2 s  .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);

      // 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.