out格式文件怎样修改里面的数据
发布网友
发布时间:2022-04-29 13:00
我来回答
共1个回答
热心网友
时间:2022-06-28 09:35
需要FileInputStream
fs=new
FileInputStream(路径)
Properties
p=new
Properties();
p.load(fs);
这只是把磁盘中的文件数据库加载到内存中
让后设置值
p.setProperty(key,value);
修改后数据依然还在内存。要想保存到文件必须把它从内存中传到磁盘文件
此时FileOutputStream
fos=new
FileOutputStream(路径)
p.store(fos);
之后才把修改的文件内容保存到磁盘。