Properties类stringPropertyNames()方法
- stringPropertyNames() 方法可在
java.util
包。 - stringPropertyNames() 方法用于获取此属性列表中存在的所有键,此处键及其所需值是字符串以及唯一键存在于默认属性列表中以在集合中查看。
- stringPropertyNames() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
- stringPropertyNames() 方法在返回属性名称时不会抛出异常。
用法:
public Set stringPropertyNames();
参数:
- 它不接受任何参数。
返回值:
该方法的返回类型是Set
,它返回此属性列表中存在的键集以及默认列表中存在的键。
例:
// Java program to demonstrate the example
// of Set stringPropertyNames()
// method of Properties
import java.io.*;
import java.util.*;
public class StringPropertyNamesOfProperties {
public static void main(String arg[]) throws Exception {
// Instantiate Properties object
Properties prop = new Properties();
prop.put("10", "C");
prop.put("20", "C++");
prop.put("30", "JAVA");
prop.put("40", "PHP");
prop.put("50", "SFDC");
// Get all the properties of
// this object in a set
Set set = prop.stringPropertyNames();
// Display Set View
System.out.println("prop.stringPropertyNames():" + set);
}
}
输出
prop.stringPropertyNames():[50, 40, 30, 20, 10]
相关用法
- Java Properties setProperty()用法及代码示例
- 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 hashCode()用法及代码示例
- Java Properties isEmpty()用法及代码示例
- Java Properties clone()用法及代码示例
- Java Properties keySet()用法及代码示例
- Java Properties forEach(BiConsumer)用法及代码示例
- Java Properties containsValue(value)用法及代码示例
- Java Properties elements()用法及代码示例
- Java Properties computeIfPresent(Key, BiFunction)用法及代码示例
- Java Properties keys()用法及代码示例
- Java Properties equals(value)用法及代码示例
- Java Properties get(key)用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Properties stringPropertyNames() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。