您好,登錄后才能下訂單哦!
Java讀取Properties文件的方法總結
讀取.properties配置文件在實際的開發中使用的很多,總結了一下,有以下幾種方法:
其實很多都是大同小異,概括起來就2種:
先構造出一個InputStream來,然后調用Properties#load()
利用ResourceBundle,這個主要在做國際化的時候用的比較多。
例如:它能根據系統語言環境自動讀取下面三個properties文件中的一個:
附上別人整理的6中方法...
1、使用java.util.Properties類的load()方法
InputStream in = new BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in);
2、使用java.util.ResourceBundle類的getBundle()方法
ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());
3、使用java.util.PropertyResourceBundle類的構造函數
InputStream in = new BufferedInputStream(new FileInputStream(name)); ResourceBundle rb = new PropertyResourceBundle(in);
4、使用class變量的getResourceAsStream()方法
InputStream in = JProperties.class.getResourceAsStream(name);//JProperties為當前類名 Properties p = new Properties(); p.load(in);
5、使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法
InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name); Properties p = new Properties(); p.load(in);
6、使用java.lang.ClassLoader類的getSystemResourceAsStream()靜態方法
InputStream in = ClassLoader.getSystemResourceAsStream(name); Properties p = new Properties(); p.load(in);
7、在Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法
InputStream in = context.getResourceAsStream(path); Properties p = new Properties(); p.load(in);
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。