Java的Locale getDisplayCountry() 方法和示例
Java中Locale 类的getDisplayCountry()方法用于获取指定语言环境的国家或地区名称。该名称根据用户的方便程度显示。
句法:
LOCALE.getDisplayCountry()
参数:该方法不带任何参数。
返回值:此方法返回适合给定语言环境的国家/地区名称。
下面的程序说明了 getDisplayCountry() 方法的工作:
方案一:
// Java code to illustrate getDisplayCountry() method
import java.util.*;
public class Locale_Demo {
public static void main(String[] args)
{
// Creating a new locale
Locale first_locale
= new Locale("English", "In");
// Displaying first locale
System.out.println("First Locale: "
+ first_locale);
// Displaying the country_name of this locale
System.out.println("Country: "
+ first_locale.getDisplayCountry());
}
}
输出:
First Locale: english_IN
Country: India
方案二:
// Java code to illustrate getDisplayCountry() method
import java.util.*;
public class Locale_Demo {
public static void main(String[] args)
{
// Creating a new locale
Locale first_locale
= new Locale("ar", "SA");
// Displaying first locale
System.out.println("First Locale: "
+ first_locale);
// Displaying the country_name of this locale
System.out.println("Country: "
+ first_locale.getDisplayCountry());
}
}
输出:
First Locale: ar_SA
Country: Saudi Arabia