java.util.ResourceBundle.handleKeySet()方法实例
java.util.ResourceBundle.handleKeySet() 方法返回一个集只包含在此ResourceBundle中的键。
声明
以下是java.util.ResourceBundle.handleKeySet()方法的声明
protected Set<String> handleKeySet()
参数
-
NA
返回值
此方法只在这个资源包返回一组包含的键
异常
-
NA
例子
下面的示例演示java.util.ResourceBundle.handleKeySet()方法的用法。
package com.yiibai; import java.util.*; 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; } protected Set<String> handleKeySet() { return new HashSet<String>(); } public static void main(String[] args) { // create a new ResourceBundle with specified locale ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US); // print the keys Enumeration<String> enumeration = bundle.getKeys(); while (enumeration.hasMoreElements()) { System.out.println("" + enumeration.nextElement()); } } }
假设在你的CLASSPATH中,资源文件hello_en_US.properties可用,包含以下内容。该文件将被用作输入到示例程序:
hello=Hello World! bye=Goodbye World! morning=Good Morning World!
让我们来编译和运行上面的程序,这将产生以下结果:
hello
bye
morning