要在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!
寫入文件中。