Properties類propertyNames()方法
- propertyNames() 方法可在
java.util
包。 - propertyNames() 方法用於返回此屬性列表中存在的所有鍵的集合,它以枚舉的形式包含默認屬性列表中的唯一鍵。
- propertyNames() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- propertyNames() 方法可能會在返回屬性名稱時拋出異常。
ClassCastException:當此屬性列表中的任何現有鍵與字符串不兼容時,可能會拋出此異常
用法:
public Enumeration propertyNames();
參數:
- 它不接受任何參數。
返回值:
該方法的返回類型是Enumeration
,它返回此屬性列表中存在的所有鍵的枚舉以及默認屬性列表中存在的唯一鍵。
例:
// Java program to demonstrate the example
// of Enumeration propertyNames() method
// of Properties
import java.io.*;
import java.util.*;
public class PropertyNamesOfProperties {
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");
// By using propertyNames() method is to
// returns the keys set in the form of an
// Enumeration
System.out.println("prop.propertyNames():");
for (Enumeration en = prop.propertyNames(); en.hasMoreElements();)
System.out.println(en.nextElement());
}
}
輸出
prop.propertyNames(): 40 50 10 20 30
相關用法
- 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)用法及代碼示例
- Java Properties containsValue(value)用法及代碼示例
- Java Properties elements()用法及代碼示例
- Java Properties setProperty()用法及代碼示例
- Java Properties computeIfPresent(Key, BiFunction)用法及代碼示例
- Java Properties keys()用法及代碼示例
- Java Properties equals(value)用法及代碼示例
- Java Properties get(key)用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Properties propertyNames() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。