File类的创建功能
注意事项:
FileInputStream fis = new FileInputStream("aaa.txt"); //创建一个文件输入流对象,并关联aaa.txt
int b; //定义变量,记录每次读到的字节
while((b = fis.read()) != -1) { //将每次读到的字节赋值给b并判断是否是-1
System.out.println(b); //打印每一个字节
}
fis.close(); //关闭流释放资源
FileInputStream fileInputStream =
new FileInputStream("src//test2.text");
int i;
while((i =fileInputStream.read())!= -1){
System.out.println(i);
}
fileInputStream.close();
1、构造方法大体两类:第一:传递File类 第二:直接传递地址
2、遍历时read()是从该输入流读取一个字节的数据。 并且是 提升为int类型(主要是因为 区分 -1 是否为文件结尾)
3、read() 的作用方式类似指针,调用一次,向下移动一次,因此,在一次循环中调用一次
4、*******要区别read()和read(数组) 两种方法,第一种返回的是存储的字节内容,第二种是返回的存储的总个数
因为字节输入流可以操作任意类型的文件,比如图片音频等,这些文件底层都是以二进制形式的存储的,如果每次读取都返回byte,有可能在读到中间的时候遇到111111111
那么这11111111是byte类型的-1,我们的程序是遇到-1就会停止不读了,后面的数据就读不到了,所以在读取的时候用int类型接收,如果11111111会在其前面补上
24个0凑足4个字节,那么byte类型的-1就变成int类型的255了这样可以保证整个数据读完,而结束标记的-1就是int类型
FileOutputStream fos = new FileOutputStream("bbb.txt"); //如果没有bbb.txt,会创建出一个
//fos.write(97); //虽然写出的是一个int数,但是在写出的时候会将前面的24个0去掉,所以写出的一个byte
fos.write(98);
fos.write(99);
fos.close();
FileOutputStream fileOutputStream =
new FileOutputStream("src//abc.text");
fileOutputStream.write(88);
fileOutputStream.close();
FileInputStream fileInputStream =
new FileInputStream("src//abc.text");
int i ;
while((i=fileInputStream.read())!= -1){
System.out.println((char)i);
}
fileInputStream.close();
1、默认会清空后重写入,若要追加直接在创建时加入true(具体参考下面13)
FileOutputStream fos = new FileOutputStream("bbb.txt",true); //如果没有bbb.txt,会创建出一个
//fos.write(97); //虽然写出的是一个int数,但是在写出的时候会将前面的24个0去掉,所以写出的一个byte
fos.write(98);
fos.write(99);
fos.close();
FileInputStream读取
FileOutputStream写出
FileInputStream fis = new FileInputStream("致青春.mp3"); //创建输入流对象,关联致青春.mp3
FileOutputStream fos = new FileOutputStream("copy.mp3");//创建输出流对象,关联copy.mp3
int b;
while((b = fis.read()) != -1) {
fos.write(b);
}
fis.close();
fos.close();
FileInputStream fileInputStream =
new FileInputStream("src//Day13//a95738b43f1405b9bb939177c79d1d81.jpg");
FileOutputStream fileOutputStream =
new FileOutputStream("src//Day13//out.jpg");
int i;
while(( i = fileInputStream.read()) != -1){
fileOutputStream.write(i);
}
fileInputStream.close();
fileOutputStream.close();
A:案例演示
弊端:有可能会内存溢出
FileInputStream fis = new FileInputStream("致青春.mp3");
FileOutputStream fos = new FileOutputStream("copy.mp3");
byte[] arr = new byte[fis.available()]; //根据文件大小做一个字节数组
fis.read(arr); //将文件上的所有字节读取到数组中
fos.write(arr); //将数组中的所有字节一次写到了文件上
fis.close();
fos.close();
FileInputStream fileInputStream =
new FileInputStream("src//Day13//a95738b43f1405b9bb939177c79d1d81.jpg");
FileOutputStream fileOutputStream =
new FileOutputStream("src//Day13//out2.jpg");
byte [] bytes = new byte[fileInputStream.available()];
int il;
while (( il= fileInputStream.read(bytes)) != -1){
fileOutputStream.write(bytes,0,il);
}
System.out.println(il);
fileInputStream.close();
fileOutputStream.close();
1、public int read(byte[] b)
即:从该输入流读取最多b.length字节的数据 “到” 字节数组(把数据读入到字节数组中,最大读字节数组的大小)
返回:读取到缓冲区的总字节数,如果没有更多的数据,因为文件的结尾已经到达, -1 。 (返回读了多少字节)
2、write(byte[] b, int off, int len)
即:从off开始写入len个字节的数据
无返回值
为什么不用这个方法 write(byte[] b) 而用 write(byte[] b, int off, int len)
备注:read 当数组长度为4时,最后只剩下3个数据,返回值也为3,不过数组中有4个数据(第四个数据是上一次读入的数据),因此,write方法不能用write(byte[] b),会将第四个无用数据也传入,参考如下
FileInputStream fileInputStream =
new FileInputStream("src//Day13//test2.text"); //1234
FileOutputStream fileOutputStream =
new FileOutputStream("src//Day13//out3.text");
byte [] bytes = new byte[3];
int i;
while ((i = fileInputStream.read(bytes))!= -1){
fileOutputStream.write(bytes); //输出 123423
fileOutputStream.write(bytes,0,i); //输出 1234
3、对于二者源码如下:
public void write(byte b[]) throws IOException {
writeBytes(b, 0, b.length, append);从0到b.length
}
public void write(byte b[], int off, int len) throws IOException {
writeBytes(b, off, len, append);从off到len
}
字节流一次读写一个字节数组复制图片和视频
FileInputStream fis = new FileInputStream(“致青春.mp3”);
FileOutputStream fos = new FileOutputStream(“copy.mp3”);
int len;
byte[] arr = new byte[1024 * 8]; //自定义字节数组
while((len = fis.read(arr)) != -1) {
//fos.write(arr);
fos.write(arr, 0, len); //写出字节数组写出有效个字节个数
}
fis.close();
fos.close();
A:缓冲思想
B.BufferedInputStream
C.BufferedOutputStream
D.拷贝的代码
FileInputStream fis = new FileInputStream("致青春.mp3"); //创建文件输入流对象,关联致青春.mp3
BufferedInputStream bis = new BufferedInputStream(fis); //创建缓冲区对fis装饰
FileOutputStream fos = new FileOutputStream("copy.mp3"); //创建输出流对象,关联copy.mp3
BufferedOutputStream bos = new BufferedOutputStream(fos); //创建缓冲区对fos装饰
int b;
while((b = bis.read()) != -1) {
bos.write(b);
}
bis.close(); //只关装饰后的对象即可
bos.close();
E.小数组的读写和带Buffered的读取哪个更快?
BufferedInputStream bufferedInputStream =
new BufferedInputStream(new FileInputStream("src\\Day13\\a95738b43f1405b9bb939177c79d1d81.jpg"));
BufferedOutputStream bufferedOutputStream =
new BufferedOutputStream(new FileOutputStream("src\\bufferout1.jpg"));
int b;
while ((b =bufferedInputStream.read()) != -1){
bufferedOutputStream.write(b);
}
bufferedInputStream.close();
bufferedOutputStream.close();
1、它的操作和普通的流方法相同,只是在底层实现时有所区别,它是存够后在进行一块写入
2、read()同样返回一个字节的数据 read(数组)返回读取的总个数
//使用数组
BufferedInputStream bufferedInputStream =
new BufferedInputStream(new FileInputStream("src\\Day13\\test2.text"));
BufferedOutputStream bufferedOutputStream =
new BufferedOutputStream(new FileOutputStream("src\\Day13\\out3.text"));
byte [] bytes = new byte[5];
int b;
while ((b =bufferedInputStream.read(bytes)) != -1){
bufferedOutputStream.write(bytes,0,b);
System.out.println(b);
}
bufferedInputStream.close();
bufferedOutputStream.close();
1、如果不刷新,可能会出现输出不全的问题
2、flush()方法适用类似 qq聊天的场景, 发送多次装不满
FileInputStream fileInputStream = new FileInputStream("C:\\Users\\PengH\\Desktop\\新建文件夹\\Day1Day2\\src\\Day13\\test2.text");
FileOutputStream fileOutputStream = new FileOutputStream("C:\\Users\\PengH\\Desktop\\新建文件夹\\Day1Day2\\src\\Day13\\out3.text");
//读
byte [] bytes = new byte[57];
int i ;
while ((i = fileInputStream.read(bytes)) != -1){
System.out.println(new String(bytes,0,i));
}
//写
String str = "我你大爷";
fileOutputStream.write(str.getBytes());
fileInputStream.close();
fileOutputStream.close();
try finally嵌套
FileInputStream fis = null;
FileOutputStream fos = null;
try {
fis = new FileInputStream("aaa.txt");
fos = new FileOutputStream("bbb.txt");
int b;
while((b = fis.read()) != -1) {
fos.write(b);
}
} finally {
try {
if(fis != null)
fis.close();
}finally {
if(fos != null)
fos.close();
}
}
try close
try(
FileInputStream fis = new FileInputStream("aaa.txt");
FileOutputStream fos = new FileOutputStream("bbb.txt");
MyClose mc = new MyClose();
){
int b;
while((b = fis.read()) != -1) {
fos.write(b);
}
}
原理
普通的方法,实现AutoCloseable中的close 在()中也会自动调用
public class TestClose implements AutoCloseable {
@Override
public void close() throws Exception {
System.out.println("我关闭了");
}
}
psvm{
try(TestClose tt = new TestClose();){
} catch (Exception e) {
e.printStackTrace();
}
}
//我关闭了
给图片加密
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("a.jpg"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("b.jpg"));
int b;
while((b = bis.read()) != -1) {
bos.write(b ^ 123);
}
bis.close();
bos.close();
在控制台录入文件的路径,将文件拷贝到当前项目下
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个文件路径");
String line = sc.nextLine(); //将键盘录入的文件路径存储在line中
File file = new File(line); //封装成File对象
FileInputStream fis = new FileInputStream(file);
FileOutputStream fos = new FileOutputStream(file.getName());
int len;
byte[] arr = new byte[8192]; //定义缓冲区
while((len = fis.read(arr)) != -1) {
fos.write(arr,0,len);
}
fis.close();
fos.close();
将键盘录入的数据拷贝到当前项目下的text.txt文件中,键盘录入数据当遇到quit时就退出
Scanner sc = new Scanner(System.in);
FileOutputStream fos = new FileOutputStream("text.txt");
System.out.println("请输入:");
while(true) {
String line = sc.nextLine();
if("quit".equals(line))
break;
fos.write(line.getBytes());
fos.write("\r\n".getBytes());
}
fos.close();