亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

迁西县| 故城县| 灵丘县| 睢宁县| 永定县| 公安县| 缙云县| 夏邑县| 东台市| 镇康县| 湛江市| 黄大仙区| 涡阳县| 钟祥市| 汾西县| 十堰市| 江川县| 遂川县| 昭苏县| 南昌县| 神农架林区| 融水| 涟水县| 武乡县| 穆棱市| 曲沃县| 五家渠市| 福海县| 祁门县| 新乡市| 车险| 永寿县| 阜阳市| 顺义区| 都安| 珠海市| 淮安市| 镇平县| 沾益县| 南皮县| 丘北县|