Properties 持久的屬性集

劍西樓發表於2017-03-22
特點:
1、Hashtable的子類,map集合中的方法都可以用。
2、該集合沒有泛型。鍵值都是字串。

3、它是一個可以持久化的屬性集。鍵值可以儲存到集合中,也可以儲存到持久化的裝置(硬碟、U盤、光碟)上。鍵值的來源也可以是持久化的裝置。


    // 根據key讀取value  
        public void readValue(String filePath, String key) {  
      
            Properties props = new Properties();  
      
            InputStream in = new BufferedInputStream(new FileInputStream(filePath));  
    //Thread.currentThread().getContextClassLoader().getResourceAsStream("eop.properties");  
      
            props.load(in); // 從輸入流中讀取屬性列表(鍵和元素對)  
            String value = props.getProperty(key);  
        }  
      
        // 讀取properties的全部資訊  
        public static void readProperties(String filePath) {  
           Properties props = new Properties();  
           InputStream in = new BufferedInputStream(new FileInputStream(filePath));      
           props.load(in);  
      
           Enumeration en = props.propertyNames();  
            while (en.hasMoreElements()) {  
                String key = (String) en.nextElement();  
                String value = props.getProperty(key);  
          }  
        }  


相關文章