Java Locale getCountry() 方法



描述

Java Locale getCountry() 方法返回此区域设置的国家/地区代码,该代码将为空字符串或大写的 ISO 3166 2 字母代码。

声明

以下是 java.util.Locale.getCountry() 方法的声明

public String getCountry()

参数

返回值

此方法不返回值。

异常

从 US 区域设置获取国家示例

以下示例演示了 Java Locale getCountry() 方法的使用。我们正在创建一个 US 区域设置,然后检索并打印其国家/地区。

package com.tutorialspoint;

import java.util.Locale;

public class LocaleDemo {
   public static void main(String[] args) {

      // create a new locale
      Locale locale = Locale.US;

      // print this locale
      System.out.println("Locale1:" + locale);

      // print the country of this locale
      System.out.println("Country:" + locale.getCountry());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Locale1:en_US
Country:US

从 Canada 区域设置获取国家示例

以下示例演示了 Java Locale getCountry() 方法的使用。我们正在创建一个 Canada 区域设置,然后检索并打印其国家/地区。

package com.tutorialspoint;

import java.util.Locale;

public class LocaleDemo {
   public static void main(String[] args) {

      // create a new locale
      Locale locale = Locale.CANADA;

      // print this locale
      System.out.println("Locale1:" + locale);

      // print the country of this locale
      System.out.println("Country:" + locale.getCountry());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Locale1:en_CA
Country:CA

从 FRANCE 区域设置获取国家示例

以下示例演示了 Java Locale getCountry() 方法的使用。我们正在创建一个 France 区域设置,然后检索并打印其国家/地区。

package com.tutorialspoint;

import java.util.Locale;

public class LocaleDemo {
   public static void main(String[] args) {

      // create a new locale
      Locale locale = Locale.FRANCE;

      // print this locale
      System.out.println("Locale1:" + locale);

      // print the country of this locale
      System.out.println("Country:" + locale.getCountry());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Locale1:fr_FR
Country:FR
java_util_locale.htm
广告