假設在src根目錄下有檔案 config.properties ,下面**就是讀取這個檔案的例子程式
方法1
properties prop = new properties();
inputstream in = object.class.getresourceasstream("/config.properties");
prop.load(in);
string databasepath = prop.getproperty("data_source").trim();
補充說明:要獲取某包下的配置檔案可以通過某類獲取同一級包下的檔案,具體為
//object 就是指定的類,下面的方法會去指定類的包下找叫config.properties的配置檔案
inputstream in = object.class.getresourceasstream("config.properties");
方法2
string fp = this.getclass().getclassloader().getresource("/").getpath() + "config.properties";
file file = new file(fp);
properties properties = new properties();
properties.load(new fileinputstream(file));
string urlfilter = properties.getproperty("data_source");
寫某包下的properties檔案
//myobject是專案裡面的類
string fp = myobject.getclass().getclassloader().getresource("/cn/myproject/").getpath() + "config.properties";
file file = new file(fp);
properties properties = new properties();
properties.load(new fileinputstream(file));
string urlfilter = properties.getproperty("data_source");
java 讀取properties檔案
url 在實際開發工作中,我們又是會將一些路徑檔案配置放在properties檔案中,這樣我們需要修改路徑的時候就只需要寫該一下配置檔案就行了,不需要在 中挨個挨個的去改。但是我們怎樣獲得配置檔案中的值呢?其實這個很簡單,我們只需要封裝如下乙個工具類就行了 public class urlutil ...
java讀取properties檔案
學習心得 待完善。伺服器resin mysql druid資料庫連線池的配置檔案druid config.properties放在web inf classes目錄下 cmd視窗下直接執行編譯好的class檔案,能正確讀取properties檔案。但是,如果使用servlet呼叫類,就無法正確讀取。...
Spring讀取properties檔案
相當於 class org.springframework.beans.factory.config.propertyplaceholderconfigurer name locations value classpath system params dev.properties bean 這樣就再...