字节流输出的使用步骤:
-
创建一个FileOutPutStream对象,构造方法中传递写入数据的目的地。
-
调用FileOutPutStream对象中的方法write,把数据写入到文件中。
-
释放资源
//创建一个File对象 File file = new File("./a.txt"); //创建一个文件 file.createNewFile(); //创建字节输出流 FileOutputStream stream = new FileOutputStream(file); //写入97->a stream.write(97); //释放资源 stream.close();
多个字节的写入方法:
- public void write(byte[] b); 将b.length字节从指定的字节数组写入此流中
- public void write(byte[] b, int off, int len); 从指定的字节数组写入len字节,从偏移量off开始输出到此流中