📌  相关文章
📜  Java的Locale getDisplayCountry() 方法和示例

📅  最后修改于: 2022-05-13 01:57:13.816000             🧑  作者: Mango

Java的Locale getDisplayCountry() 方法和示例

JavaLocale 类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