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

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

java.util.ListResourceBundle.getKeys() 方法返回包含在此ResourceBundle及其父包中的鍵的枚舉。

聲明

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

public Enumeration<String> getKeys()

參數

  • NA

返回值

此方法返回包含在此ResourceBundle及其父包中的鍵的枚舉。

異常

  • NA

例子

下麵的例子顯示java.util.ListResourceBundle.getKeys()方法的用法。

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!"}
              };
   }
}

public class ListResourceBundleDemo {

   public static void main(String[] args) {

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

      // get the keys
      Enumeration<String> enumeration = mr.getKeys();

      // print the keys
      while (enumeration.hasMoreElements()) {
         System.out.println("" + enumeration.nextElement());
      }

   }
}

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

hello
goodnight
bye