本文主要是介绍字节输出流FileOutputStream写入数据文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.io.FileOutputStream;import java.io.IOException;
//写入数据文件,学习父类方法,使用子类对象
public class FileOutputStreamDemo {
public static void main(String[] args)throws IOException {
FileOutputStream fos=new FileOutputStream("d:\\demo\\b.txt");
//流对象的方法write写数据
//写1个字节
fos.write(97);
fos.write(49);
fos.write(48);
fos.write(48);
//写字节数组
byte[] bytes={65,66,67,68};
fos.write(bytes);
//写字节数组的一部分,开始的索引,写几个
fos.write(bytes,1,2);
//写入字节数组的简便方式
fos.write("hello".getBytes());
//关闭资源
fos.close();
}
}
这篇关于字节输出流FileOutputStream写入数据文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!