91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

东城区| 漾濞| 泌阳县| 新和县| 武安市| 上饶市| 丹阳市| 延庆县| 五莲县| 盐山县| 宁阳县| 昌宁县| 沛县| 息烽县| 乐平市| 东兰县| 房山区| 宣化县| 朝阳县| 宁德市| 桐乡市| 遂平县| 陆川县| 漯河市| 上犹县| 肥西县| 虹口区| 东海县| 丰都县| 饶平县| 武夷山市| 旬阳县| 蕉岭县| 平和县| 开原市| 南皮县| 彭山县| 泰宁县| 轮台县| 开封市| 修文县|