程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> java讀取.properties配置文件的幾種方法,java.properties

java讀取.properties配置文件的幾種方法,java.properties

編輯:JAVA綜合教程

java讀取.properties配置文件的幾種方法,java.properties


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

一.通過jdk提供的java.util.Properties類

        此類繼承自java.util.HashTable,即實現了Map接口,所以,可使用相應的方法來操作屬性文件,但不建議使用像put、putAll這 兩個方法,因為put方法不僅允許存入String類型的value,還可以存入Object類型的。因此java.util.Properties類提 供了getProperty()和setProperty()方法來操作屬性文件,同時使用store或save(已過時)來保存屬性值(把屬性值寫 入.properties配置文件)。在使用之前,還需要加載屬性文件,它提供了兩個方法:load和loadFromXML。

        load有兩個方法的重載:load(InputStream inStream)、load(Reader reader),所以,可根據不同的方式來加載屬性文件。

        可根據不同的方式來獲取InputStream,如:

1.通過當前類加載器的getResourceAsStream方法獲取下載地址  

Java代碼  收藏代碼
  1. InputStream inStream = TestProperties.class.getClassLoader().getResourceAsStream("test.properties");  

2.從文件獲取

Java代碼  收藏代碼
  1. InputStream inStream = new FileInputStream(new File("filePath"));  

3.也是通過類加載器來獲取,和第一種一樣

Java代碼  收藏代碼
  1. InputStream in = ClassLoader.getSystemResourceAsStream("filePath");  

4.在servlet中,還可以通過context來獲取InputStream

Java代碼  收藏代碼
  1. InputStream in = context.getResourceAsStream("filePath");  

5.通過URL來獲取

Java代碼  收藏代碼
  1. URL url = new URL("path");  
  2. InputStream inStream = url.openStream();  

讀取方法如下:

Java代碼  收藏代碼
  1. Properties prop = new Properties();    
  2. prop.load(inStream);    
  3. String key = prop.getProperty("username");    
  4. //String key = (String) prop.get("username");  

 

二.通過java.util.ResourceBundle類讀取

        這種方式比使用Properties要方便一些。

1.通過ResourceBundle.getBundle()靜態方法來獲取

        ResourceBundle是一個抽象類,這種方式來獲取properties屬性文件不需要加.properties後綴名,只需要文件名即可。

Java代碼  收藏代碼
  1. ResourceBundle resource = ResourceBundle.getBundle("com/mmq/test");//test為屬性文件名,放在包com.mmq下,如果是放在src下,直接用test即可    
  2. String key = resource.getString("username");  

2.從InputStream中讀取

        獲取InputStream的方法和上面一樣,不再贅述。

Java代碼  收藏代碼
  1. ResourceBundle resource = new PropertyResourceBundle(inStream);  

        注意:在使用中遇到的最大的問題可能是配置文件的路徑問題,如果配置文件入在當前類所在的包下,那麼需要使用包名限定, 如:test.properties入在com.mmq包下,則要使用com/mmq/test.properties(通過Properties來獲 取)或com/mmq/test(通過ResourceBundle來獲取);屬性文件在src根目錄下,則直接使用test.properties 下載地址   或test即可。

 

三.實例

ResourceLoader.java

Java代碼  收藏代碼
  1. package com.bijian.study;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileInputStream;  
  5. import java.util.HashMap;  
  6. import java.util.Map;  
  7. import java.util.Properties;  
  8.   
  9. public final class ResourceLoader {  
  10.   
  11.     private static ResourceLoader loader = new ResourceLoader();  
  12.     private static Map<String, Properties> loaderMap = new HashMap<String, Properties>();  
  13.   
  14.     private ResourceLoader() {  
  15.     }  
  16.   
  17.     public static ResourceLoader getInstance() {  
  18.         return loader;  
  19.     }  
  20.       
  21.     public Properties getPropFromProperties(String fileName) throws Exception {  
  22.           
  23.         Properties prop = loaderMap.get(fileName);  
  24.         if (prop != null) {  
  25.             return prop;  
  26.         }  
  27.         String filePath = null;  
  28.         String configPath = System.getProperty("configurePath");  
  29.   
  30.         if (configPath == null) {  
  31.             filePath = this.getClass().getClassLoader().getResource(fileName).getPath();  
  32.         } else {  
  33.             filePath = configPath + "/" + fileName;  
  34.         }  
  35.         prop = new Properties();  
  36.         prop.load(new FileInputStream(new File(filePath)));  
  37.   
  38.         loaderMap.put(fileName, prop);  
  39.         return prop;  
  40.     }  
  41. }  

PropertiesUtil.java

Java代碼  收藏代碼
  1. package com.bijian.study;  
  2.   
  3. import java.util.Properties;  
  4. import java.util.concurrent.ConcurrentHashMap;  
  5. import java.util.concurrent.ConcurrentMap;  
  6.   
  7. /** 
  8.  * 用ConcurrentMap來緩存屬性文件的key-value 
  9.  */  
  10. public class PropertiesUtil {  
  11.       
  12.     private static ResourceLoader loader = ResourceLoader.getInstance();  
  13.     private static ConcurrentMap<String, String> configMap = new ConcurrentHashMap<String, String>();  
  14.     private static final String DEFAULT_CONFIG_FILE = "test.properties";  
  15.   
  16.     private static Properties prop = null;  
  17.   
  18.     public static String getStringByKey(String key, String propName) {  
  19.         try {  
  20.             prop = loader.getPropFromProperties(propName);  
  21.         } catch (Exception e) {  
  22.             throw new RuntimeException(e);  
  23.         }  
  24.         key = key.trim();  
  25.         if (!configMap.containsKey(key)) {  
  26.             if (prop.getProperty(key) != null) {  
  27.                 configMap.put(key, prop.getProperty(key));  
  28.             }  
  29.         }  
  30.         return configMap.get(key);  
  31.     }  
  32.   
  33.     public static String getStringByKey(String key) {  
  34.         return getStringByKey(key, DEFAULT_CONFIG_FILE);  
  35.     }  
  36.   
  37.     public static Properties getProperties() {  
  38.         try {  
  39.             return loader.getPropFromProperties(DEFAULT_CONFIG_FILE);  
  40.         } catch (Exception e) {  
  41.             e.printStackTrace();  
  42.             return null;  
  43.         }  
  44.     }  
  45. }  

Constant.java

Java代碼  收藏代碼
  1. package com.bijian.study;  
  2.   
  3. public class Constant {  
  4.       
  5.     public static final String TEST = PropertiesUtil.getStringByKey("test", "test.properties");  
  6. }  

Main.java

Java代碼  收藏代碼
  1. package com.bijian.study;  
  2.   
  3. public class Main {  
  4.   
  5.     public static void main(String[] args) {  
  6.           
  7.         System.out.println(Constant.TEST);  
  8.     }  
  9. }  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved