使用FileWriter和BufferedWriter 往txt文本中追加或覆盖内容

public static void main(String[] args) throws Exception {
        String filePath = "D:\\测试文件\\20230310-006\\errLog.txt";
        File file = new File(filePath);
        // txt 文本换行符
        String symbol = "\r\n";
        //判断文件是否存在
        if (!file.exists()) {
            // 文件不存在创建文件
            file.createNewFile();
        }
        // 这里true为追加文件内容,false为覆盖文件内容
        FileWriter fileWriter = new FileWriter(file, true);
        BufferedWriter bw = new BufferedWriter(fileWriter);
        bw.write("你个老六" + symbol);
        bw.close();
        fileWriter.close();
}

你可能感兴趣的:(使用FileWriter和BufferedWriter 往txt文本中追加或覆盖内容)