Java.util.ResourceBundle.getBundle()


描述

所述java.util.ResourceBundle.getBundle(String baseName,ResourceBundle.Control control)方法返回使用指定的基本名称,默认语言环境和指定控制资源包。

声明

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

public static final ResourceBundle getBundle(String baseName,ResourceBundle.Control control)

参数

baseName - 资源包的基本名称,完全限定的类名

control - 为资源包加载过程提供信息的控件

返回值

此方法返回给定基本名称和默认语言环境的资源包

异常

NullPointerException - 如果baseName或control为null

MissingResourceException - 如果找不到指定基本名称的资源包

IllegalArgumentException - 如果给定控件未正确执行(例如,control.getCandidateLocales返回null。)请注意,控件的验证将根据需要执行。

实例

以下示例显示了java.util.ResourceBundle.getBundle()方法的用法。

package com.tutorialspoint;

import java.util.ResourceBundle;
import java.util.ResourceBundle.Control;

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

      // create a new ResourceBundle.Control with default format
      ResourceBundle.Control rbc = ResourceBundle.Control.getControl(Control.FORMAT_DEFAULT);

      // create a new ResourceBundle with default locale and a Control
      ResourceBundle bundle = ResourceBundle.getBundle("hello", rbc);

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

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

hello = Hello World!

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

Hello World!