FileOutputStream 有三个写出方法
1:
:write(int b)写出一个整数,但是这个整数只有八位 范围是0-255
write(23345) 输出的结果是45
write(543121) 输出的结果是121
2:write(byte[] b) 将整个byte[]写出到流通道
3.write(byte[] b, int off, int len) 将byte数组中的 索引位置在off到len之间的数据 写出到流通道
FileOutputStream 有三个写出方法
1:
:write(int b)写出一个整数,但是这个整数只有八位 范围是0-255
write(23345) 输出的结果是45
write(543121) 输出的结果是121
2:write(byte[] b) 将整个byte[]写出到流通道
3.write(byte[] b, int off, int len) 将byte数组中的 索引位置在off到len之间的数据 写出到流通道