文件读取的四种方式

74 篇文章 0 订阅
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;


/*
 * 四种方式实现D:\\a.avi赋值到E:\\b.avi
 * 基本字节流一次读写一个字节;
 * 基本字节流一次读写一个字节数组;
 * 高效字节流一次读写一个字节;
 * 高效字节流一次读写一个字节数组;(缓冲)
 * */
public class FileCopyMp4Demo {


public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub

long startTime = System.currentTimeMillis();
// method1("D:\\a1.avi","E:\\1.avi");  //用时:126641毫秒
// method2("D:\\a1.avi","E:\\2.avi");  //用时:348毫秒
// method3("D:\\a1.avi","E:\\3.avi");  //用时:2485毫秒
method4("D:\\a1.avi","E:\\4.avi");  //用时:146毫秒
long endTime = System.currentTimeMillis();
System.out.println("用时:"+(endTime-startTime)+"毫秒");
}

public static void method1(String srcfile,String tofile) throws IOException{
FileInputStream fis = new FileInputStream(srcfile);
FileOutputStream fos = new FileOutputStream(tofile);
int by =0;
while((by=fis.read())!=-1){     //通过字节流一次读写一个字节
fos.write(by);
}
fos.close();
fis.close();
}
public static void method2(String srcfile,String tofile) throws IOException{
FileInputStream fis = new FileInputStream(srcfile);
FileOutputStream fos = new FileOutputStream(tofile);
byte b[] = new byte[1024];
int len = 0;
while((len=fis.read(b))!=-1){     //通过字节流一次读写一个字节数组
fos.write(b);
}
fos.close();
fis.close();
}
public static void method3(String srcfile,String tofile) throws IOException{
BufferedInputStream bis = new BufferedInputStream( new FileInputStream(srcfile));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tofile));
int by = 0;
while((by=bis.read())!=-1){     //通过高效字节流一次读写一个字节
bos.write(by);
}
bos.close();
bis.close();
}
public static void method4(String srcfile,String tofile) throws IOException{
BufferedInputStream bis = new BufferedInputStream( new FileInputStream(srcfile));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tofile));
long len = 0;
byte b[] = new byte[1024];
while((len=bis.read(b))!=-1){     //通过高效字节流一次读写一个字节数组
bos.write(b);
}
bos.close();
bis.close();
}


}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值