讀取properties檔案的2種方法

2021-10-05 06:43:20 字數 785 閱讀 6279

一 , resourcebundle 用法 與 properties 對比

(1) , resourcebundle 它只能用於讀取 , 不能用於寫入

properties 可以讀取,可以寫入

(2) , resourcebundle 只能用於讀取properties結尾的檔案 resourcebundle.getbundle(「bean」);

properties 可以讀取任意結尾的檔案, 以流的形式任意讀取

in = beanfactory2.class.getclassloader().getresourceasstream(「bean.properties」);

(3), resourcebundle 只能讀取類路徑下的properties檔案,別的地方不行

com.sh.config.bean(包的方式) 正確 com./h/config/bean (路勁方式)錯誤的

1, resourcebundle 用法

public class beanfactory

public static object getbean(string beanname) catch (exception e)

}2 , properties 用法

public class beanfactory2 catch (ioexception e) finally catch (ioexception e) }}

}public static object getbean(string beanname) catch (exception e)

}

properties 檔案讀取

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

java 讀取properties檔案

url 在實際開發工作中,我們又是會將一些路徑檔案配置放在properties檔案中,這樣我們需要修改路徑的時候就只需要寫該一下配置檔案就行了,不需要在 中挨個挨個的去改。但是我們怎樣獲得配置檔案中的值呢?其實這個很簡單,我們只需要封裝如下乙個工具類就行了 public class urlutil ...

java讀取properties檔案

學習心得 待完善。伺服器resin mysql druid資料庫連線池的配置檔案druid config.properties放在web inf classes目錄下 cmd視窗下直接執行編譯好的class檔案,能正確讀取properties檔案。但是,如果使用servlet呼叫類,就無法正確讀取。...