Java 讀寫properties設定檔

來源:互聯網
上載者:User

標籤:class   關閉   路徑   編寫   val   system   屬性   null   讀取   

 java.util.Properties是對properties設定檔的映射,properties實現了Map介面,<String Key,String value>

properties檔案格式如下:

  #這是注釋,可忽略

  user=root

  password=123456

 

              java對properties檔案的讀操作                    

需要先讀取指定properties檔案:

String path="src/test.properties";//工程相對路徑FileInputStream in=new FileInputStream(path);

建立Properties對象,負載檔案屬性列表並映射成Map形式:

Properties p=new Properties();p.load(in);

進行相應的異常處理和關閉流之後,System.out.println(p.getProperty("user"));,輸出Key:user對應的value:root

               java對properties檔案的寫操作                    

OutputStream out = new FileOutputStream(path);p.setProperty("id", "value");//添加屬性p.store(out, null);//儲存屬性到檔案,null表示注釋為null,但是還是會自動注釋檔案修改時間
out.close();

 

properties檔案還有一種xml形式,基本沒差別,相對應的loadFromXML(),storeToXML()進行操作,不過xml檔案編寫略繁瑣。

 

Java 讀寫properties設定檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.