properties配置檔案

2021-09-18 04:06:38 字數 967 閱讀 4910

開發中獲得連線的四個引數(驅動,url,使用者名稱,密碼)通常都存在配置檔案中,方便後期維護,程式如果需要更換資料庫,只需要修改配置檔案即可。

通常情況下,我們習慣使用properties檔案,此檔案要求:

檔案位置:任意,建議src下(非web應用)、classpath(web應用)

檔名:任意,擴充套件名為properties

檔案內容:一行一組資料,格式「key=value」(不要有空格)

key名自定義,如果是多個單詞,習慣使用點分隔,例如:jdbc.driver

value值不支援中文,如果需要使用非英文本元,講進行unicode轉換。

1、建立配置檔案

driver=com.mysql.jdbc.driver

url=jdbc:mysql://localhost:3306/student

user=root

password=root

2、載入配置檔案:resourcebundle物件

public class textbundle 

public static void main(string args)

}

3、載入配置檔案:properties物件

public class textbundle  catch (ioexception e) 

//5、獲得引數值

driver = props.getproperty("driver");

url = props.getproperty("url");

user = props.getproperty("user");

password = props.getproperty("password"); }

public static void main(string args)

}

Properties配置檔案

在應用jdbc連線mysql陣列庫過程中,有以下幾步準備工作 一 匯入mysql驅動包 1 選擇路徑 二 配置檔案位置 命名 格式 不同於myeclipse,它比較智慧型 1 在src目錄下 2 命名一般是 dbconfig.properties 3 鍵值對形式儲存,值不需要 修飾 三 這基本就是初...

java配置檔案 properties

用法 1 getproperty string key 用指定的鍵在此屬性列表中搜尋屬性。也就是通過引數 key 得到 key 所對應的 value。2 load inputstream instream 從輸入流中讀取屬性列表 鍵和元素對 通過對指定的檔案 比如說上面的 test.properti...

Java讀寫配置檔案properties

1.新建乙個test.properties檔案,裡面的值是pageno 1 3.後來發現properties檔案一般只是用來做常量的讀入,而變數的寫入開啟檔案後根本不會變化,後來又改用txt檔案來實現讀寫。string filepath system.getproperty user.dir 得到當...