java.util.Properties.propertyNames()方法實例
java.util.Properties.propertyNames() 方法返回如果未發現從主屬性列表中名稱相同的一個鍵屬性列表中所有鍵,包括默認屬性列表中不同的鍵的枚舉。
聲明
以下是java.util.Properties.propertyNames()方法的聲明
public Enumeration<?> propertyNames()
參數
-
NA
返回值
此方法返回屬性列表中所有鍵,包括默認屬性列表中的鍵的枚舉。
異常
-
ClassCastException --如果在此屬性列表中的任何鍵不是字符串。
例子
下麵的示例演示java.util.Properties.propertyNames()方法的用法。
package com.yiibai; import java.util.*; public class PropertiesDemo { public static void main(String[] args) { Properties prop = new Properties(); // add some properties prop.put("Height", "200"); prop.put("Width", "15"); // assign the property names in a enumaration Enumeration<?> enumeration = prop.propertyNames(); // print the enumaration elements System.out.println("" + enumeration.nextElement()); System.out.println("" + enumeration.nextElement()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Width Height