中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java讀取Properties文件的七種方法的總結

發布時間:2020-10-01 18:59:05 來源:腳本之家 閱讀:145 作者:lqh 欄目:編程語言

Java讀取Properties文件的方法總結

         讀取.properties配置文件在實際的開發中使用的很多,總結了一下,有以下幾種方法:

其實很多都是大同小異,概括起來就2種:

先構造出一個InputStream來,然后調用Properties#load()

利用ResourceBundle,這個主要在做國際化的時候用的比較多。

例如:它能根據系統語言環境自動讀取下面三個properties文件中的一個:

  • resource_en_US.properties
  • resource_zh_CN.properties
  • resource.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);

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大化| 秦皇岛市| 永顺县| SHOW| 稻城县| 收藏| 从化市| 南康市| 曲沃县| 赤城县| 屏东市| 双流县| 宝山区| 新兴县| 漾濞| 太仆寺旗| 陆河县| 贺州市| 台南县| 扎鲁特旗| 华宁县| 弥渡县| 买车| 昆山市| 青浦区| 安新县| 旬邑县| 澄江县| 安陆市| 南京市| 本溪| 平度市| 东乌珠穆沁旗| 阿荣旗| 永寿县| 巩义市| 孟连| 黄梅县| 汤原县| 革吉县| 金乡县|