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

溫馨提示×

溫馨提示×

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

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

如何解析Java加載property文件配置過程

發布時間:2021-10-15 15:34:39 來源:億速云 閱讀:114 作者:柒染 欄目:編程語言

本篇文章為大家展示了如何解析Java加載property文件配置過程,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

1 properties簡介:

properties是一種文本文件,內容格式為:

key = value #單行注釋

適合作為簡單配置文件使用,通常作為參數配置、國際化資源文件使用。

對于復雜的配置,就需要使用XML、YML、JSON等了

2 java加載Properties:

java加載properties主要通過2個util包下的工具類: Properties類、 ResourceBundle類

2.1 通過Properties類加載:

Properties類通過load()方法加載配置信息,這個方法接收一個輸入流參數:InputStream、Reader。

Properties提供get(String key) 方法讀取指定的配置項。

2.1.1 通過ClassLoader獲取InputStream加載:

該方式只能讀取類路徑下的配置文件

(1)先創建Properties對象

(2)獲取property文件對應的輸入流in

(3)使用Properties加載輸入流in

(4)通過Properties.get(key)方法獲取配置,如果配置信息不存在,則返回null

/** * 基于ClassLoader讀取properties; * 該方式只能讀取類路徑下的配置文件,有局限但是如果配置文件在類路徑下比較方便。 */public static void method1() {   System.out.println("使用ClassLoader方式加載properties");   Properties properties = new Properties();   /*   * 使用ClassLoader加載properties配置文件生成對應的輸入流。   * 使用此種方式,要求property文件必須要放在src目錄下,編譯之后會被放到class文件相同目錄下。   * 因為ClassLoad的基礎路徑是相對于編譯后class文件所在目錄(可能是bin,classes),如果將properties放在項目根目錄下,使用此種方式可能會找不到 properties文件   */   //必須要以 /開始  , 是在classes文件根目錄下尋找   InputStream in = PropertiesDemo.class.getResourceAsStream("/properties/a.properties");   System.out.println(PropertiesDemo.class.getClassLoader().getResource(".").getPath());   try {    properties.load(in);   } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();   }finally {     closeResource(in);   }      System.out.println(properties.get("name"));   System.out.println(properties.get("age"));}

2.1.2 通過構建Reader加載:

該方式的優點在于可以讀取任意路徑下的配置文件

(1)創建Properties對象

(2)創建一個Reader,可以指定路徑,不局限于類路徑

(3)使用Properties加載Reader

(4)Properties.get(key)方法讀取配置

/** * 使用inputStream讀取配置文件 * 該方式的優點在于可以讀取任意路徑下的配置文件 */public static void method2() {   System.out.println("使用InputStream方式加載properties");   Properties properties = new Properties();   BufferedReader reader = null;   try {     /*      * System.getProperty("user.dir"): 獲取項目根路徑, 而后附加配置文件的路徑     */     reader = new BufferedReader(new FileReader(System.getProperty("user.dir") + "/properties/a.properties"));     properties.load(reader);     System.out.println(properties.get("name"));     System.out.println(properties.get("age"));   } catch (FileNotFoundException e) {     // TODO Auto-generated catch block     e.printStackTrace();   } catch (IOException e) {     // TODO Auto-generated catch block     e.printStackTrace();   }finally {     closeResource(reader);   } }

2.2 通過ResourceBundle類加載:

ResourceBundle讀取配置有2種方式:

(1)指定文件路徑 :相對于src、classes的相對路徑

(2)提供InputStream

ResourceBundle提供方法getString(key) 和 getObject(key)讀取配置項使用路徑加載,不需要指定文件后綴名,且不需要手動關閉相關資源,比Properties類操作要簡單。

/** * 通過ResourceBundle 讀取配置, 此種方式項目Properties要簡單 * ResourceBundle讀取配置有2種方式: (1)指定文件路徑 (2)提供InputStream */public static void method3() {  System.out.println("使用ResourceBundle方式加載properties");  /*  * (1)直接指定文件路徑:  * 可以使用相對路徑,從類路徑開始,且不需要指定properties文件的后綴  */  ResourceBundle resource = ResourceBundle.getBundle("properties/b");  System.out.println(resource.getString("name"));  System.out.println(resource.getString("age"));   try {   /*   * (2)通過InputStream加載配置:   * 通過當前類的class實例,獲取資源輸入流   */   resource = new PropertyResourceBundle(PropertiesDemo.class.getResourceAsStream("/properties/a.properties"));   System.out.println(resource.getString("name"));   System.out.println(resource.getString("age"));  } catch (IOException e) {   // TODO Auto-generated catch block   e.printStackTrace();  }}

上述內容就是如何解析Java加載property文件配置過程,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

会东县| 白沙| 黄骅市| 乐陵市| 磴口县| 博爱县| 曲阜市| 浑源县| 贡觉县| 班戈县| 邹平县| 乐平市| 石首市| 常德市| 汝城县| 定襄县| 什邡市| 介休市| 阳原县| 中山市| 库尔勒市| 屯留县| 遂昌县| 盐津县| 通州区| 庐江县| 盐池县| 尼玛县| 山东省| 通辽市| 富平县| 海口市| 汤原县| 临汾市| 南宁市| 新巴尔虎右旗| 合作市| 新余市| 广南县| 英超| 东兴市|