Java Locale getISO3Country() 方法



描述

java Locale getISO3Country() 方法返回此区域设置的国家/地区的三个字母缩写。如果区域设置未指定国家/地区,则返回空字符串。否则,将返回大写的 ISO 3166 三字母国家/地区代码。

声明

以下是Java Locale getISO3Country() 方法的声明

public String getISO3Country()

参数

返回值

此方法不返回值。

异常

MissingResourceException − 如果此区域设置的三个字母国家/地区缩写不可用,则抛出 MissingResourceException。

获取美国区域设置国家/地区的三个字母缩写示例

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

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("Locale:" + locale);

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

输出

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

Locale:en_US
Country:USA

获取法国区域设置国家/地区的三个字母缩写示例

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

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("Locale:" + locale);

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

输出

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

Locale:fr_FR
Country:FRA

获取德国区域设置国家/地区的三个字母缩写示例

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

package com.tutorialspoint;

import java.util.Locale;

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

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

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

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

输出

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

Locale:de_DE
Country:DEU
java_util_locale.htm
广告