)创建一个文件字节输出流的对象,将内容“I Love China” 写入F盘下的“abc.txt”文档中。
*/代码:
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
/*
(1)创建一个文件字节输出流的对象,将内容“I Love China” 写入F盘下的“abc.txt”文档中。
*/
public class txct1 {
public static void main(String[] args) throws IOException {
String arr="I Love China";
FileOutputStream out=new FileOutputStream("e://abc.txt");
byte a[]=arr.getBytes();
out.write(a);
out.close();
}
}
运行结果:
I Love China