Java ResourceBundle getString() 方法



描述

Java ResourceBundle getString(String key) 方法从该资源包或其父资源包中获取给定键的字符串。

声明

以下是java.util.ResourceBundle.getString() 方法的声明

public final String getString(String key)

参数

key − 所需字符串的键

返回值

此方法返回给定键的字符串。

异常

  • NullPointerException − 如果 key 为 null

  • MissingResourceException − 如果找不到给定键的对象

  • ClassCastException − 如果为给定键找到的对象不是字符串

从美国区域设置的属性文件中获取作为字符串的值

以下示例演示了 Java ResourceBundle getString() 方法的使用,用于根据键获取对象。我们为对应的 hello_en_US.properties 文件创建了一个美国区域设置的资源包。然后,我们使用 getString() 获取分配给键 hello 的文本并将其打印出来。

package com.tutorialspoint;

import java.util.Locale;
import java.util.ResourceBundle;

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

      // create a new ResourceBundle with specified locale
      ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US);

      // print the text assigned to key "hello"
      System.out.println(bundle.getString("hello"));
   }
}

输出

假设我们在你的 CLASSPATH 中有一个可用的资源文件hello_en_US.properties,其内容如下。此文件将用作我们示例程序的输入:

hello = Hello World!

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

Hello World!

从法国区域设置的属性文件中获取作为字符串的值

以下示例演示了 Java ResourceBundle getString() 方法的使用,用于根据键获取对象。我们为对应的 hello_fr_FR.properties 文件创建了一个法国区域设置的资源包。然后,我们使用 getString() 获取分配给键 hello 的文本并将其打印出来。

package com.tutorialspoint;

import java.util.Locale;
import java.util.ResourceBundle;

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

      // create a new ResourceBundle with specified locale
      ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.FRANCE);

      // print the text assigned to key "hello"
      System.out.println(bundle.getString("hello"));
   }
}

输出

假设我们在你的 CLASSPATH 中有一个可用的资源文件hello_fr_FR.properties,其内容如下。此文件将用作我们示例程序的输入:

hello = Bonjour le monde!

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

Bonjour le monde!

从德国区域设置的属性文件中获取作为字符串的值

以下示例演示了 Java ResourceBundle getString() 方法的使用,用于根据键获取对象。我们为对应的 hello_de_DE.properties 文件创建了一个德国区域设置的资源包。然后,我们使用 getString() 获取分配给键 hello 的文本并将其打印出来。

package com.tutorialspoint;

import java.util.Locale;
import java.util.ResourceBundle;

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

      // create a new ResourceBundle with specified locale
      ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.GERMANY);

      // print the text assigned to key "hello"
      System.out.println(bundle.getString("hello"));
   }
}

输出

假设我们在你的 CLASSPATH 中有一个可用的资源文件hello_de_DE.properties,其内容如下。此文件将用作我们示例程序的输入:

hello = Hallo Welt!

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

Hallo Welt!
java_util_resourcebundle.htm
广告