Java中Properties集合中将数据写入到文本文件的方法的使用步骤

/*
    可以使用Properties集合中的方法store,把集合中的临时数据,持久化写入到银盘中存储
    void store​(OutputStream out, String comments) 将此 Properties表中的此属性列表(键和元素对)以适合于使用 load(InputStream)方法加载到 Properties表格的格式写入输出流。
    void store​(Writer writer, String comments) 将此属性列表(键和元素对)写入此 Properties表中,以适合使用 load(Reader)方法的格式输出到输出字符流。
    参数:
    OutputStream out:字节输出流,不能写入中文
    Writer writer:字符输出流,可以写中文
    tring comments:注释,用来解释说明保存的文件是做什么用的
           注释不能使用中文,会产生乱码,默认是Unicode编码
           一般使用""空字符串
    使用步骤:
    1、创建Properties集合对象,添加数据
    2、创建字节输出流/字符输出流,构造方法中绑定要输出的目的地
    3、使用Properties集合中的store.把集合中的临时数据,持久化写入到银盘中存储
    4、释放资源

 */
package com.baidu.属性集;


import java.io.FileWriter;
import java.io.IOException;
import java.util.Properties;

public class Properties集合中的方法Store {
    
    public static void main(String[] args) throws IOException {
        show01();
    }

    private static void show01() throws IOException {
//        1、创建Properties集合对象,添加数据
        Properties prop = new Properties();
        //使用setroperty​往集合中添加数据
        prop.setProperty("菠萝吹雪","180");
        prop.setProperty("上官子怡","170");
        prop.setProperty("电灯泡","2000");

//        2、创建字节输出流/字符输出流,构造方法中绑定要输出的目的地
        FileWriter fw = new FileWriter("F:\\develop\\prop.txt");
//        3、使用Properties集合中的store.把集合中的临时数据,持久化写入到银盘中存储
        prop.store(fw,"save data");
        fw.close();
    }

}

 

匿名对象使用完,流就自己关闭了,无需手动关闭。字符流可以写中文,字节流不可以写中文

package com.baidu.属性集;


import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Properties;

public class Properties集合中的方法Store {

    public static void main(String[] args) throws Exception {
        show01();
        show02();
    }

    private static void show01() throws IOException {
//        1、创建Properties集合对象,添加数据
        Properties prop = new Properties();
        //使用setroperty​往集合中添加数据
        prop.setProperty("菠萝吹雪","180");
        prop.setProperty("上官子怡","170");
        prop.setProperty("电灯泡","2000");

//        2、创建字节输出流/字符输出流,构造方法中绑定要输出的目的地
        FileWriter fw = new FileWriter("F:\\develop\\prop.txt");
//        3、使用Properties集合中的store.把集合中的临时数据,持久化写入到银盘中存储
        prop.store(fw,"save data");
        fw.close();
    }
    private static void show02() throws Exception {
//        1、创建Properties集合对象,添加数据
        Properties prop = new Properties();
        //使用setroperty​往集合中添加数据
        prop.setProperty("菠萝吹雪","180");
        prop.setProperty("上官子怡","170");
        prop.setProperty("电灯泡","2000");
        prop.store(new FileOutputStream("F:\\develop\\prop1.txt"),"");
    }


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值