在不删除当前数据的情况下写入文件

Write File without deleting current data(在不删除当前数据的情况下写入文件)

本文介绍了在不删除当前数据的情况下写入文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能的重复项: java append to file How to append data to a file?

我想在不清除(删除)旧数据的情况下用java写入文件

这是我的尝试,但是写入新数据时将清除当前数据。

import java.io.*;

public class WriteToFileExample {

public static void main(String[] args) {
    try {
        String content = "New content to write to file";

        File file = new File("/mypath/filename.txt");

        // if file doesnt exists, then create it
        if (!file.exists())
            file.createNewFile();

        FileWriter fw = new FileWriter(file.getAbsoluteFile());
        BufferedWriter bw = new BufferedWriter(fw);
        bw.write(content);
        bw.close();

    } catch (IOException e) {
        e.printStackTrace();
    }
}
}

推荐答案

使用可以指示文件在追加模式下打开的构造函数FileWriter(String filename, boolean append)

FileWriter fw = new FileWriter(file.getAbsoluteFile(), true);
                                                     //^^^^ means append

这篇关于在不删除当前数据的情况下写入文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:在不删除当前数据的情况下写入文件

基础教程推荐