Java.util.Locale.getCountry() 方法 Java.util.Locale.getAvailableLocales() 方法 Java.util.Locale.getCountry() 方法 Java.util.Locale.getCountry() 方法 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 this locale System.out.println("Locale1:" + locale); // print the country of this locale System.out.println("Country:" + locale.getCountry()); } } Java.util.Locale.getAvailableLocales() 方法 Java.util.Locale.getCountry() 方法