PropertyResourceBundle类getKeys()方法
- getKeys() 方法可在
java.util
包。 - getKeys() 方法用于返回此 PropertyResourceBundle 及其父项中存在的键的枚举。
- getKeys() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
- getKeys() 方法返回键集时不抛出异常。
用法:
public Enumeration getKeys();
参数:
- 它不接受任何参数。
返回值:
该方法的返回类型是Enumeration
,它获取此 PropertyResourceBundle 及其超类的现有键的枚举。
例:
// Java program to demonstrate the example
// of Enumeration getKeys() method of
// PropertyResourceBundle
import java.io.*;
import java.util.*;
public class GetKeyOfPropertyResourceBundle {
public static void main(String arg[]) throws Exception {
// Instantiate Properties object
String str = "10 = C\n" + " 20 =C++\n " + " 30 =Java\n ";
InputStream is = new StringBufferInputStream(str);
PropertyResourceBundle prb = new PropertyResourceBundle(is);
Enumeration en = prb.getKeys();
for (; en.hasMoreElements();)
System.out.println(en.nextElement());
}
}
输出
30 20 10
相关用法
- Java PropertyResourceBundle handleGetObject()用法及代码示例
- Java PropertyPermission newPermissionCollection()用法及代码示例
- Java PropertyPermission hashCode()用法及代码示例
- Java PropertyPermission implies()用法及代码示例
- Java PropertyPermission getActions()用法及代码示例
- Java PropertyPermission equals()用法及代码示例
- Java Properties propertyNames()用法及代码示例
- Java Properties compute(Key, BiFunction)用法及代码示例
- Java Properties containsKey(value)用法及代码示例
- Java Properties computeIfAbsent(Key, Function)用法及代码示例
- Java Properties entrySet()用法及代码示例
- Java Properties loadFromXML()用法及代码示例
- Java Properties getProperty(key)用法及代码示例
- Java Properties getOrDefault(key, defaultValue)用法及代码示例
- Java Properties stringPropertyNames()用法及代码示例
- Java Properties hashCode()用法及代码示例
- Java Properties isEmpty()用法及代码示例
- Java Properties clone()用法及代码示例
- Java Properties keySet()用法及代码示例
- Java Properties forEach(BiConsumer)用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java PropertyResourceBundle getKeys() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。