Java.util.ResourceBundle.getBundle()


描述

所述java.util.ResourceBundle.getBundle(String baseName,Locale targetLocale,ClassLoader loader,ResourceBundle.Control control) 方法返回使用指定的基本名称,目标语言环境,类加载器和控制资源包。与没有控制参数的getBundle工厂方法不同,给定控件指定如何定位和实例化资源包。

声明

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

public static ResourceBundle getBundle(String baseName,Locale targetLocale,ClassLoader loader,ResourceBundle.Control control)

参数

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

locale - 需要资源包的语言环境

loader - 从中加载资源包的类加载器

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

返回值

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

异常

NullPointerException - 如果baseName,locale,loader orcontrol为null

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

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

实例

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

package com.tutorialspoint;

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

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

      ClassLoader cl = ClassLoader.getSystemClassLoader();

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

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

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

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

hello = Hello World!

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

Hello World!