Java Locale getISO3Language() 方法



描述

Java Locale getISO3Language() 方法返回此区域设置语言的三字母缩写。如果区域设置未指定语言,则返回空字符串。否则,返回小写的 ISO 639-2/T 语言代码。

声明

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

public String getISO3Language()

参数

返回值

此方法不返回值。

异常

MissingResourceException − 如果此区域设置不可用三字母语言缩写,则抛出 MissingResourceException 异常。

获取 US 区域设置语言的三字母缩写示例

以下示例演示了 Java Locale getISO3Language() 方法的使用。我们创建了一个 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("Locale:" + locale);

      // print the language of this locale
      System.out.println("Language:" + locale.getISO3Language());
   }
}

输出

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

Locale:en_US
Language:eng

获取 FRANCE 区域设置语言的三字母缩写示例

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

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 language of this locale
      System.out.println("Language:" + locale.getISO3Language());
   }
}

输出

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

Locale:fr_FR
Language:fra

获取 Germany 区域设置语言的三字母缩写示例

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

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 language of this locale
      System.out.println("Language:" + locale.getISO3Language());
   }
}

输出

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

Locale:de_DE
Language:deu
java_util_locale.htm
广告