91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么往txt文件添加內容

小億
272
2024-05-31 18:03:09
欄目: 編程語言

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

0
思南县| 塘沽区| 临海市| 岳阳市| 繁峙县| 沂南县| 新丰县| 老河口市| 建昌县| 久治县| 宁国市| 南木林县| 安义县| 会泽县| 博野县| 云霄县| 金沙县| 元阳县| 军事| 威宁| 柯坪县| 萨迦县| 资阳市| 崇州市| 天门市| 镇原县| 沁阳市| 固镇县| 苏尼特右旗| 深圳市| 漳浦县| 海林市| 新郑市| 西乡县| 锡林郭勒盟| 彭泽县| 武穴市| 甘泉县| 偏关县| 肇东市| 德安县|