Java屬性檔案的讀取

cow977發表於2011-06-24

方法

 InputStream in = lnew BufferedInputStream( new FileInputStream(name));

 Properties p = new Properties();

 p.load(in);

注意路徑的問題,做執行之後就可以呼叫p.getProperty("name")得到對應屬性的值

方法二

 Locale locale = Locale.getDefault();

 ResourceBundle localResource = ResourceBundle.getBundle("test/propertiesTest", locale);

 String value = localResource.getString("test");

 System.out.println("ResourceBundle: " + value);

工程src目錄下propertiesTest.properties(名字字尾必須為properties)檔案內容如下:

test=hello word

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/81227/viewspace-701050/,如需轉載,請註明出處,否則將追究法律責任。

相關文章