Java.util.Locale.getDisplayCountry(Locale inLocale) 方法 Java.util.Locale.getDisplayCountry() 方法 Java.util.Locale.getDisplayLanguage() 方法 Java.util.Locale.getDisplayCountry(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 locale display name - result is based on inLocale System.out.println("Display Name:" + locale.getDisplayCountry(new Locale("GERMAN", "GERMANY"))); } } Java.util.Locale.getDisplayCountry() 方法 Java.util.Locale.getDisplayLanguage() 方法