Java tutorial
import java.util.Locale; public class Main { public static void main(String[] args) { Locale locale = Locale.SIMPLIFIED_CHINESE; System.out.println("Locale1:" + locale); // print the country of this locale System.out.println("Country:" + locale.getCountry()); } }