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

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

java.util.ResourceBundle.getKeys() 方法返回鍵的枚舉。

聲明

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

public abstract Enumeration<String> getKeys()

參數

  • NA

返回值

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

異常

  • NA

例子

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

package com.yiibai;

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

public class ResourceBundleDemo {

   public static void main(String[] args) {

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

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

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

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

   }
}

假設在你的CLASSPATH中資源文件hello_en_US.properties可用,包含以下內容。該文件將被用作輸入到示例程序:

hello=Hello World!
bye=Goodbye World!
morning=Good Morning World!

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

Hello World!
hello
bye
morning