要在Java中追加內容到文件中,您可以使用FileWriter類的構造函數中的第二個參數來指定是否追加內容。將參數設置為true以打開文件以進行追加。下面是一個示例代碼:
import java.io.FileWriter;
import java.io.IOException;
public class AppendToFile {
public static void main(String[] args) {
String content = "This is the content to append";
String fileName = "output.txt";
try {
FileWriter writer = new FileWriter(fileName, true);
writer.write(content);
writer.close();
System.out.println("Content successfully appended to file.");
} catch (IOException e) {
System.err.println("An error occurred.");
e.printStackTrace();
}
}
}
在這個示例中,我們使用FileWriter類打開名為"output.txt"的文件以進行追加,并向文件中寫入內容。如果文件不存在,它將被創建。如果您要在新行中追加內容,可以在content字符串的末尾添加換行符(\n)。