Java Properties store()方法

java.util.Properties.store(Writer writer,String comments) 将属性写入writer对象。

1 语法

public void store(Writer writer,String comments)

2 参数

out:字符流输出流。

comments:属性列表的描述。

3 返回值

返回此属性列表中指定键的前一个值;如果没有,则返回null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Properties.store(Writer writer,String comments)方法的例子
 */
import java.io.IOException;
import java.io.StringWriter;
import java.util.*;

public class Demo {
    public static void main(String[] args) {
        Properties prop = new Properties();
        StringWriter sw = new StringWriter();

        // add some properties
        prop.setProperty("Height", "200");
        prop.put("Width", "1500");

        // print the list
        System.out.println("" + prop);

        try {

            // store the properties list in an output writer
            prop.store(sw, "PropertiesDemo");

            // print the writer
            System.out.println("" + sw.toString());
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

{Width=1500, Height=200}
#PropertiesDemo
#Sat May 02 09:34:32 CST 2020
Width=1500
Height=200

热门文章

优秀文章