如何保存文本文件而不覆盖?

发布于 2024-12-06 19:10:38 字数 358 浏览 1 评论 0原文

我想保存在文本文件中而不覆盖当前数据。我的意思是,每当我保存时,下一个要保存的数据都会转到新的/下一行,这是我的问题,我不知道该怎么做。

有人可以帮我解决这个问题吗?

这是 save() 方法中的代码:

 public void save(String filename) throws IOException
{
    FileOutputStream fOut = new FileOutputStream(filename);
    ObjectOutputStream outSt = new ObjectOutputStream(fOut);
    outSt.writeObject(this);
}

I want to save in a text file without overwriting the current data. I mean the next data that will be save will go to the new/next line whenever I save and that is my problem, I don't know how to do that.

Could someone help me about this matter?

Here's the code in save() method :

 public void save(String filename) throws IOException
{
    FileOutputStream fOut = new FileOutputStream(filename);
    ObjectOutputStream outSt = new ObjectOutputStream(fOut);
    outSt.writeObject(this);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蝶舞 2024-12-13 19:10:38

阅读 文档

public FileOutputStream(文件文件,布尔追加)抛出 FileNotFoundException
创建一个文件输出流以写入由
指定的文件对象。如果第二个参数为 true,则 bytes 将
写入文件的末尾而不是开头。一个新的
创建 FileDescriptor 对象来表示此文件连接。

Read the docs

public FileOutputStream(File file, boolean append) throws FileNotFoundException
Creates a file output stream to write to the file represented by the
specified File object. If the second argument is true, then bytes will
be written to the end of the file rather than the beginning. A new
FileDescriptor object is created to represent this file connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文