解析Properties檔案

2022-09-11 07:09:10 字數 575 閱讀 8680

方法分為三步:① 通過fileinputstream傳入所需要解析檔案

② 建立properties物件,利用 load() 方法進行載入檔案

③ 利用getproperty()方法,獲取該key所對應的value值(properties檔案基本上是由鍵值對形式存在的)

解析檔案**:

//

解析properties檔案

public

class

propertiesdemo

public

static

void main(string args) throws

exception

}

所需要解析的檔案(log4j.properties):

log4j.rootlogger=info, console,file

### 把日誌資訊輸出到控制台 ###

### 把日誌資訊輸出到檔案:jlog.log ###

**執行結果:

properties資源檔案解析

資源檔案可以看成是配置檔案,一般存在的形式有兩種 properties檔案形式和xml檔案形式。資源檔案的作用 解決硬編碼問題 邏輯中寫死的 如在使用資料庫的時候,一般將資料庫連線的四大金剛配置在properties檔案中。properties檔案中資料的儲存是以鍵值對的形式存在,每一行為一條資料,...

載入properties檔案

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

properties 檔案讀取

假設在src根目錄下有檔案 config.properties 下面 就是讀取這個檔案的例子程式 方法1 properties prop new properties inputstream in object.class.getresourceasstream config.properties ...