Java.util.ResourceBundle.keySet()


描述

所述java.util.ResourceBundle.setParent(ResourceBundle parent)方法设置该束的父束。当此包不包含特定资源时,getObject将搜索父包。

声明

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

protected void setParent(ResourceBundle parent)

参数

parent - 此捆绑包的父捆绑包。

返回值

此方法不返回值。

异常

NA

实例

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

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.Locale;
import java.util.ResourceBundle;
import java.util.StringTokenizer;

public class ResourceBundleDemo extends ResourceBundle {

   @Override
   public Object handleGetObject(String key) {
      if (key.equals("hello")) {
         return "Hello World!";
      } else {
         return null;
      }
   }

   @Override
   public Enumeration getKeys() {
      StringTokenizer key = new StringTokenizer("Hello World!");
      return key;
   }

   @Override
   protected void setParent(ResourceBundle parent) {
      super.setParent(parent);
   }

   public static void main(String[] args) {

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

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

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

hello = Hello World!

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

Hello World!