1.properties介紹
properties的基本使用(示例)
public
class
propertiesdemo01
}}
2.properties作為map集合的特有方法
object setproperty(string key, string value)
設定集合的鍵和值,都是string型別,底層呼叫 hashtable方法 put
string getproperty(string key)
使用此屬性列表中指定的鍵搜尋屬性
set stringpropertynames()
從該屬性列表中返回乙個不可修改的鍵集,其中鍵及其對應的值是字串
示例**
public
class
propertiesdemo02
}}
3.properties和io流相結合的方法
方法名說明void load(reader reader)
從輸入字元流讀取屬性列表(鍵和元素對)
void store(writer writer, string comments)
將此屬性列表(鍵和元素對)寫入此 properties表中,以適合使用 load(reader)方法的格式寫入輸出字元流
示例**
public
class
propertiesdemo03
private
static
void
myload()
throws ioexception
private
static
void
mystore()
throws ioexception
}
Properties作為Map集合的特有方法
public class propertiesdemo02 object put object key,object value prop.setproperty leon002 張曼玉 prop.setproperty leon003 王祖賢 string getproperty string k...
將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...