關於Properties的小理

2021-09-12 06:23:08 字數 806 閱讀 5303

properties是hashtable的子類:

properties概述:

properties類表示乙個持久的屬性值

properties可儲存在流中或從流中載入

屬性列表中每個鍵及其對應值都是乙個字串

properties可作為map集合使用

properties prop = new properties();

prop.setproperty(「name」, 「zhangsan」);

prop.setproperty(「tel」, 「121212121」);

enumeration en = (enumeration) prop.propertynames();

while (en.hasmoreelements()) {

// 獲取properties中的每乙個鍵

string key = en.nextelement();

// 根據鍵獲取值

string value = prop.getproperty(key);

system.out.println(key + ":" + value);

properties的特殊功能:

public object setproperty(string key, string value)

public string getproperty(string key)

public enumberation stringpropertynames()

io流(properties的load()和store()功能)

關於執行緒的小理

執行緒的生命週期 新建 建立執行緒物件 就緒 執行緒物件已經啟動了,但是還沒有獲取到cpu的執行權 執行 獲取到了cpu的執行權 阻塞 沒有cpu的執行權,回到就緒 死亡 執行完畢,執行緒消失 sleep 方法和wait方法的區別 sleep方法必須傳入引數,引數就是時間,時間到了自動醒來 wait...

關於Tomcat小理

web伺服器軟體 1.客戶端在瀏覽器的位址列上輸入位址,然後web伺服器軟體,接收請求,然後響應資訊 2.處理客戶端的請求,返回資源 資訊 web應用 需要伺服器支撐 index.html tomcat apache weblogic bea websphere ibm iis 微軟 tomcat目...

關於資料庫與錶小理

多表之間的關係如何來維護?外來鍵約束 foreign key alter table product add foreign key cno references category cid 一對多 再多的一方新增乙個外來鍵指向一的一方的主鍵 多對多 建立一張中間表,將多對多的關係,拆分成一對多的關係...