gpt4 book ai didi

java - 写入一个已经存在的文件

转载 作者:行者123 更新时间:2023-12-01 18:58:22 26 4
gpt4 key购买 nike

如何写入 FileOutputStream 中存在的文件?当我运行该程序两次时,第二次 oos 和 fos 为 null

 public class ReadFile {
static FileOutputStream fos = null;
static ObjectOutputStream oos = null;
public static void main(String[] args) throws IOException, ClassNotFoundException {

File f = new File("file.tmp");
if (f.exists()) {
//How to retreive an old oos to can write on old file ?
oos.writeObject("12345");
oos.writeObject("Today");
}
else
{
fos = new FileOutputStream("file.tmp");
oos = new ObjectOutputStream(fos);
}
oos.close();
}
}

最佳答案

ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(f,true));

如果你想追加到文件

关于java - 写入一个已经存在的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13232582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com