載入properties檔案

2022-07-30 03:27:12 字數 842 閱讀 3127

載入properties檔案的方式有兩種:

1、通過io流的方式來載入properties檔案

1

/**2

* 通過io流的方式來載入properties檔案3*

4* @throws

exception5*/

6@test

7public

void test1() throws

exception

22 }

2通過resourcebundle來載入properties檔案

1

/**2

* 通過resourcebundle來載入properties檔案3*

4* @throws

exception5*/

6@test

7public

void test2() throws

exception

19 }

執行結果為:

1

key4 d

2key3 c

3key6 aa

4key5 aa

5key2 b

6key1 a

7key10 c

8key11 c

9key8 b

10key7 a

11 key9 c

載入properties檔案

1 使用絕對路徑 string filename c a.properties properties p new properties inputstream input new fileinputstream filename p.load input 缺點 使用了絕對路徑,不利於專案的拷貝 頻繁...

java 載入properties 檔案

public static string mysql url public static string mysql uname public static string mysql passwd static catch ioexception e mysql url properties.getp...

properties載入順序

屬性多於乙個的話,mybatis按照如下的順序載入它們 1 在properties元素體內指定的屬性首先被讀取。2 從類路徑下資源或properties元素的url屬性中載入的屬性第二被讀取,它會 color red 覆蓋 color 已經存在的完全一樣的屬性。3 作為方法引數傳遞的屬性最後被讀取,...