配置檔案在很多方面可以用到,比如資料庫連線,資料庫工廠方法的呼叫,只要在配置檔案中修改即可,不用修改程式,使用起來還是很方便的。
現在演示一下通過執行緒讀取配置檔案進行反射的一種方法。
在專案中新建乙個空白檔案,輸入的內容以下內容:
item-dao-factory=com.github.ven13.comding2017.factory.itemdaofactorymysql
注意:等號左右不能空格,前面是所要讀取的名稱,後面就是具體的內容。
然後就可以在**中進行讀取了。
//讀取屬性
string classname = props.getproperty("item-dao-factory");
class.forname(classname).newinstance();
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...