java.util.Properties.stringPropertyNames()方法實例
java.util.Properties.stringPropertyNames()方法返回一組鍵在此屬性列表,其中的鍵及其對應值是字符串,包括默認屬性列表中不同的鍵,如果尚未發現從主屬性列表中同名的鍵。屬性,其鍵或值的類型String被忽略了。
聲明
以下是java.util.Properties.stringPropertyNames()方法的聲明
public Set<String> stringPropertyNames()
參數
-
NA
返回值
此方法返回一組鍵在此屬性列表,其中的鍵及其對應值是字符串,包括默認屬性列表中的鍵。
異常
-
NA
例子
下麵的示例演示java.util.Properties.stringPropertyNames()方法的用法。
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"); // save the Property names in the set Set<String> set = prop.stringPropertyNames(); // print the set System.out.println("" + set); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
[Width, Height]