位置:首頁 > Java技術 > Java.util包 > java.util.ListResourceBundle.handleKeySet()方法實例

java.util.ListResourceBundle.handleKeySet()方法實例

java.util.ListResourceBundle.handleKeySet() 方法返回一個集隻包含在此ResourceBundle中的鍵。

聲明

以下是java.util.ListResourceBundle.handleKeySet()方法的聲明

protected Set handleKeySet()

參數

  • key -- 鍵對所需對象

返回值

這種方法隻在這個資源包返回一組包含的鍵

異常

  • NA

例子

下麵的示例演示java.util.ListResourceBundle.handleKeySet()方法的用法。

package com.yiibai;

import java.util.*;

// create a class that extends to ListResourceBundle
class MyResources extends ListResourceBundle {

   // get contents must be implemented
   protected Object[][] getContents() {
      return new Object[][]{
                 {"hello", "Hello World!"},
                 {"bye", "Goodbye World!"},
                 {"goodnight", "Goodnight World!"}
              };
   }
   
   protected Set<String> handleKeySet() {
      return new HashSet<String>();
      
   }
}

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

      // create a new MyResources instance
      MyResources mr = new MyResources();

      // get the object for key hello
      System.out.println("" + mr.getString("hello"));
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Hello World!