properties web 讀取不到

properties 在編譯以後讀取不到

ClassLoader classLoader = Thread.currentThrea().getContextClassLoader();
InputStream in = classLoader.getResourceAsStream("[u]/[/u]const.properties");
Properties prt = new Properties();
try {
prt.load(in);
} catch (FileNotFoundException e1) {

e1.printStackTrace();
} catch (IOException e) {

e.printStackTrace();
}
properties 文件放在src下 後來在文件名前加了個“/”就能讀取了
"/****"表示根目錄
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章