/*
可以使用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"),"");
}
}