Java ResourceBundle getObject() 方法



描述

Java ResourceBundle getObject(String key) 方法从该资源包或其父级资源包中获取给定键的对象。此方法首先尝试使用 handleGetObject 从该资源包中获取对象。如果未成功,并且父资源包不为空,则调用父资源包的 getObject 方法。如果仍然不成功,则抛出 MissingResourceException 异常。

声明

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

public final Object getObject(String key)

参数

key − 所需对象的键

返回值

此方法返回给定键的对象

异常

  • NullPointerException − 如果 key 为 null

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

从美国区域设置的属性文件中获取键对应的对象值

以下示例演示了如何使用 Java ResourceBundle getObject() 方法根据键获取对象。我们为相应的 hello_en_US.properties 文件创建了一个美国区域设置的资源包。然后,我们使用 getObject() 检索分配给键 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.getObject("hello"));
   }
}

输出

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

hello = Hello World!

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

Hello World!

从法国区域设置的属性文件中获取键对应的对象值

以下示例演示了如何使用 Java ResourceBundle getObject() 方法根据键获取对象。我们为相应的 hello_fr_FR.properties 文件创建了一个法国区域设置的资源包。然后,我们使用 getObject() 检索分配给键 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.getObject("hello"));
   }
}

输出

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

hello = Bonjour le monde!

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

Bonjour le monde!

从德国区域设置的属性文件中获取键对应的对象值

以下示例演示了如何使用 Java ResourceBundle getObject() 方法根据键获取对象。我们为相应的 hello_de_DE.properties 文件创建了一个德国区域设置的资源包。然后,我们使用 getObject() 检索分配给键 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.getObject("hello"));
   }
}

输出

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

hello = Hallo Welt!

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

Hallo Welt!
java_util_resourcebundle.htm
广告