要往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異常。