public class propertiesdemo02
object put(object key, object value)
*/prop.setproperty("leon002", "張曼玉");
prop.setproperty("leon003", "王祖賢");
//string getproperty(string key):使用此屬性列表中指定的鍵搜尋屬性
// system.out.println(prop.getproperty("leon001"));
// system.out.println(prop.getproperty("leon0011"));
// system.out.println(prop);
//setstringpropertynames():從該屬性列表中返回乙個不可修改的鍵集,其中鍵及其對應的值是字串
setnames = prop.stringpropertynames();
for (string key : names)
}}
Properties作為Map集合的使用
1.properties介紹 properties的基本使用 示例 public class propertiesdemo01 2.properties作為map集合的特有方法 object setproperty string key,string value 設定集合的鍵和值,都是string型...
將properties內容放置到map中
比較簡單 private static mapmap private static properties p static catch ioexception e 方法描述 獲取id對應的值 author liming time 2012 5 24 下午02 05 45 param id retur...
Properties作為集合的特有方法練習
object setproperty string key,string value 設定集合的鍵和值,都是string型別,底層呼叫時hashtablepublic class propertiesdemo02 object put object key,object value prop.set...