今天想讀取src下的配置檔案,以前一直沒找到方法,今天研究了下終於ok了
system.
out.println(
"path1:"
+ getclass().getresource(
"config.xml
").getpath(
));
system.
out.println(
"path2:"
+ getclass().getclassloader().getresource(
"config.xml
").getpath());
path1
也就是說,
path
1的路徑包含了包名,而
path2
卻沒有包含。所以說配置檔案想放**讀都ok的了!
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...