Java.util.Locale.getDisplayName(Locale inLocale) 方法


Java.util.Locale.getDisplayName(Locale inLocale) 方法

package com.codingdict;

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 display name for locale - based on inLocale
      System.out.println("Name:"
         + locale.getDisplayName(new Locale("GERMAN", "GERMANY")));
   }
}