使用FileOutputStream字节文件输出流类,将hello 写入E://1.txt文件中。完成代码填空。 import java.io.*; public class FileOutputStreamDemo01 { public static void main(String[] args) { FileOutputStream fos = null; try { 【代码1】 = new FileOutputStream("E:\\1.txt"); fos.write(【代码2】); } catch (IOException e) { e.printStackTrace(); } finally { if(fos != null) { try { 【代码3】; } catch (IOException e) { e.printStackTrace(); } } } } }
时间: 2024-01-25 17:03:00 浏览: 57
javaIO字节流读取文件方式总结共4页.pdf.zip
使用FileOutputStream字节文件输出流类,将hello 写入E://1.txt文件中。完成代码填空。
```
import java.io.*;
public class FileOutputStreamDemo01 {
public static void main(String[] args) {
FileOutputStream fos = null;
try {
fos = new FileOutputStream("E:\\1.txt");
fos.write("hello".getBytes()); // 代码2
} catch (IOException e) {
e.printStackTrace();
} finally {
if(fos != null) {
try {
fos.close(); // 代码3
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
```
代码1:创建文件输出流对象,指定要写入的文件路径。
代码2:将字符串"hello"转换为字节数组,并调用输出流的write()方法将字节数组写入文件中。
代码3:关闭输出流。
阅读全文