Java中Properties的使用詳解
這篇文章主要介紹了Java中Properties的使用詳解的相關(guān)資料,需要的朋友可以參考下。
Java中有個(gè)比較重要的類Properties(Java.util.Properties),主要用于讀取Java的配置文件,各種語(yǔ)言都有自己所支 持的配置文件,配置文件中很多變量是經(jīng)常改變的,這樣做也是為了方便用戶,讓用戶能夠脫離程序本身去修改相關(guān)的變量設(shè)置。今天,我們就開(kāi)始Properties的使用。
Java中Properties的使用
Properties的文檔說(shuō)明:
The Properties class represents a persistent set of properties. The Properties can be saved to a stream or loaded from a stream. Each key and its corresponding value in the property list is a string.
Properties類的描述:
public class Properties extends Hashtable
測(cè)試的項(xiàng)目結(jié)構(gòu)如下:

一、在huhx.properties文件中,我們?yōu)橐卜奖?,加入一條數(shù)據(jù):
- name=huhx
二、將huhx.properties文件加載讀取,得到相應(yīng)的屬性
- Properties properties = new Properties();
- FileInputStream fis = new FileInputStream("huhx.properties");
- properties.load(fis);
- System.out.println(properties.get("name"));
三、Properties的list方法的使用
- PrintStream printStream = System.out;
- properties.list(printStream);
list方法的具體代碼:
- public void list(PrintStream out) {
- out.println("-- listing properties --");
- Hashtable h = new Hashtable();
- enumerate(h);
- for (Enumeration e = h.keys() ; e.hasMoreElements() ;) {
- String key = (String)e.nextElement();
- String val = (String)h.get(key);
- if (val.length() > 40) {
- valval = val.substring(0, 37) + "...";
- }
- out.println(key + "=" + val);
- }
- }
四、Properties的store方法的使用
- OutputStream outputStream = new FileOutputStream("huhx.txt");
- properties.store(outputStream, "comments");
五、Properties的storeToXML方法的使用
- OutputStream outputStream2 = new FileOutputStream("huhx.xml");
- properties.storeToXML(outputStream2, "comments");
六、最終生成的文件如下:
- huhx.txt:
- #comments
- #Thu May 19 19:19:36 CST 2016
- name=huhx
- huhx.xml:
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
- <properties>
- <comment>comments</comment>
- <entry key="name">huhx</entry>
- </properties>
- package com.huhx.linux;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
- import java.io.OutputStream;
- import java.io.PrintStream;
- import java.util.Properties;
- public class PropertiesTest {
- public static void main(String[] args) throws Exception {
// 一般Properties的使用
- Properties properties = new Properties();
- FileInputStream fis = new FileInputStream("huhx.properties");
- properties.load(fis);
- System.out.println(properties.get("name"));
// 以下是測(cè)試的部分
- PrintStream printStream = System.out;
- properties.list(printStream);
- OutputStream outputStream = new FileOutputStream("huhx.txt");
- properties.store(outputStream, "comments");
- OutputStream outputStream2 = new FileOutputStream("huhx.xml");
- properties.storeToXML(outputStream2, "comments");
- }
- }
以上所述是小編給大家介紹的Java中Properties的使用詳解,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!