溫馨提示×

java怎么創(chuàng)建文件并寫入數(shù)據(jù)

小億
132
2024-01-30 17:05:34
欄目: 編程語言

要在Java中創(chuàng)建文件并寫入數(shù)據(jù),可以使用FileOutputStream類來完成。下面是一個簡單的示例代碼:

import java.io.FileOutputStream;
import java.io.IOException;

public class CreateFileExample {
    public static void main(String[] args) {
        try {
            // 創(chuàng)建文件輸出流對象,指定文件路徑
            FileOutputStream fos = new FileOutputStream("example.txt");

            // 要寫入的數(shù)據(jù)
            String data = "Hello, World!";

            // 將數(shù)據(jù)轉(zhuǎn)換為字節(jié)數(shù)組,并寫入文件
            fos.write(data.getBytes());

            // 關(guān)閉文件輸出流
            fos.close();

            System.out.println("文件創(chuàng)建并寫入完成!");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

運行上述代碼后,將在當(dāng)前目錄下創(chuàng)建一個名為example.txt的文件,并將字符串Hello, World!寫入文件中。

0