java怎么往txt文件添加内容

avatar
作者
筋斗云
阅读量:0

要往txt文件添加内容,可以使用Java中的FileWriter类来实现。下面是一个简单的示例代码:

import java.io.FileWriter; import java.io.IOException;  public class AppendToFile {     public static void main(String[] args) {         String fileName = "test.txt";         String content = "This is the content to be added to the file.";          try {             FileWriter fw = new FileWriter(fileName, true); // 第二个参数为true表示以追加模式打开文件             fw.write(content);             fw.close();             System.out.println("Content added to the file successfully.");         } catch (IOException e) {             System.out.println("An error occurred.");             e.printStackTrace();         }     } } 

运行该代码后,会将content的内容添加到test.txt文件末尾。记得要处理可能出现的IOException异常。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!