好程式設計師Java培訓分享Java讀寫Properties配置檔案

好程式設計師發表於2020-11-19

  好程式設計師Java 培訓分享 Java 讀寫 Properties 配置檔案, 1.Properties 類與 Properties 配置檔案

   Properties 類繼承自 Hashtable 類並且實現了 Map 介面,也是使用一種鍵值對的形式來儲存屬性集。不過 Properties 有特殊的地方,就是它的鍵和值都是字串型別。

   2.Properties 中的主要方法

   (1)load(InputStream inStream)

   這個方法可以從.properties 屬性檔案對應的檔案輸入流中,載入屬性列表到 Properties 類物件。如下面的程式碼:

   Properties pro = new Properties();

   FileInputStream in = new FileInputStream("a.properties");

   pro.load(in);

   in.close();

   (2)store(OutputStream out,String comments)

   這個方法將Properties 類物件的屬性列表儲存到輸出流中。如下面的程式碼:

   FileOutputStream oFile = new FileOutputStream(file, "a.properties");

   pro.store(oFile, "Comment");

   oFile.close();

   如果comments 不為空,儲存後的屬性檔案第一行會是 #comments, 表示註釋資訊;如果為空則沒有註釋資訊。

   註釋資訊後面是屬性檔案的當前儲存時間資訊。

   (3)getProperty/setProperty

   這兩個方法是分別是獲取和設定屬性資訊。

   3. 程式碼例項

   屬性檔案a.properties 如下:

   name=root

   pass=liu

   key=value

讀取a.properties 屬性列表,與生成屬性檔案 b.properties 。程式碼如下:

import java.io.BufferedInputStream;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.util.Iterator;

import java.util.Properties;

 

public class PropertyTest {

    public static void main(String[] args) {

        Properties prop = new Properties();

        try{

            // 讀取屬性檔案 a.properties

            InputStream in = new BufferedInputStream (new FileInputStream("a.properties"));

            prop.load(in);     /// 載入屬性列表

            Iterator<String> it=prop.stringPropertyNames().iterator();

            while(it.hasNext()){

                String key=it.next();

                System.out.println(key+":"+prop.getProperty(key));

            }

            in.close();

 

            /// 儲存屬性到 b.properties 檔案

            FileOutputStream oFile = new FileOutputStream("b.properties", true);//true 表示追加開啟

            prop.setProperty("phone", "10086");

            prop.store(oFile, "The New properties file");

            oFile.close();

        }

        catch(Exception e){

            System.out.println(e);

        }

    }

}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69913864/viewspace-2735339/,如需轉載,請註明出處,否則將追究法律責任。

相關文章