java讀取配置檔案比較好的兩種方法

2021-06-29 01:06:17 字數 505 閱讀 7388

1.使用的是當前類的相對路徑

bufferedreader br=new bufferedreader( new inputstreamreader(xmlparserhandler.class.getresourceasstream("./rain.xml")));// ./代表當前目錄不寫也可以

inputsource is=new inputsource(br);//資料來源

2.

/** 

* spring 提供的 propertiesloaderutils 允許您直接通過基於類路徑的檔案位址載入屬性資源

* 最大的好處就是:實時載入配置檔案,修改後立即生效,不必重啟

*/

private static void springutil()

} catch (ioexception e)

try catch (interruptedexception e)

} }

java 讀取配置檔案

前幾天因為配置檔案的事,線上的job掛掉了,使用的是spring載入配置檔案方式。spring配置如下 test.properties api test.properties decryptpropertyplaceholderconfigurer類如下所示。public class decrypt...

java讀取配置檔案

現今的程式都要求能夠讀寫配置檔案,使得程式的配置資訊能夠很方便地修改。讀取配置檔案通常使用property檔案,下面列舉了從hadoop的hdfs和本地的檔案系統讀取配置的例子。話不多說,上 讀取hdfs配置檔案 public static properties getpropertiesfromh...

java讀取配置檔案property

properties pro new properties try catch filenotfoundexception e catch ioexception e propertynames 返回屬性列表中所有鍵的列舉 enumeration enu2 pro.propertynames whi...