Java的Locale getCountry() 方法和示例
Java中Locale 类的getCountry()方法用于获取指定语言环境的国家或地区代码。这将是一个空字符串或一个大写的 ISO 3166 2 字母代码,或一个 UN M.49 3 位代码。
句法:
LOCALE.getCountry()
参数:该方法不带任何参数。
返回值:此方法返回给定语言环境的国家/地区代码,如果语言环境为空,则返回空字符串。
下面的程序说明了 getCountry() 方法的工作:
方案一:
// Java code to illustrate getCountry() method
import java.util.*;
public class Locale_Demo {
public static void main(String[] args)
{
// Creating a new locale
Locale first_locale
= new Locale("English", "UK");
// Displaying first locale
System.out.println("First Locale: "
+ first_locale);
// Displaying the country_code of this locale
System.out.println("Country: "
+ first_locale.getCountry());
}
}
输出:
First Locale: english_UK
Country: UK
方案二:
// Java code to illustrate getCountry() method
import java.util.*;
public class Locale_Demo {
public static void main(String[] args)
{
// Creating a new locale
Locale first_locale
= new Locale("English", "India");
// Displaying first locale
System.out.println("First Locale: "
+ first_locale);
// Displaying the country_code of this locale
System.out.println("Country: "
+ first_locale.getCountry());
}
}
输出:
First Locale: english_INDIA
Country: INDIA