使用文件流与使用缓冲流完成文件的复制操作性能…
2019-12-11 16:03:45来源:博客园 阅读 ()
使用文件流与使用缓冲流完成文件的复制操作性能对比,文件流 FileInputStream FileOutputStream 缓冲流: BufferedInputStream BufferedOutputStream
package seday06;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
/**
* @author xingsir
* 使用文件流完成文件的复制操作
*
* 文件流:
* java.io.FileInputStream;
* java.io.FileOutputStream;
*/
public class CopyDemo {
public static void main(String[] args) throws IOException{
FileInputStream fis=new FileInputStream("testApp.rar");
FileOutputStream fos= new FileOutputStream("testApp_cp.rar");
//1024byte =1kb ,1kb*10=10kb
byte[] data=new byte[1024*10];
int len=-1;
long start = System.currentTimeMillis();//获取开始时间
//循环
while ((len=fis.read(data))!=-1) {//当每次读取字节不等于-1,表示都有数据
fos.write(data);//写
}
System.out.println("复制完成");
long end = System.currentTimeMillis();//获取结束时间
System.out.println("复制完成,耗时:"+(end-start)+"ms");//打印
fis.close();
fos.close();
}
}
//=========================================================================
package seday06;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
/**
* @author xingsir
* 使用缓冲流完成文件复制
*
* 缓冲流:
* java.io.BufferedInputStream
* java.io.BufferedOutputStream
* 它们是一组高级流,将它们连接上以后可以提高读写效率。这样一来无论我们使用单字节读写还是块读写,都可以保证读写效率。
*/
public class CopyDemo2 {
public static void main(String[] args) throws IOException {
FileInputStream fis=new FileInputStream("testApp.rar");
FileOutputStream fos= new FileOutputStream("testApp_cp.rar");
BufferedInputStream bis= new BufferedInputStream(fis);//缓冲流
BufferedOutputStream bos=new BufferedOutputStream(fos);//缓冲流
//1024byte =1kb ,1kb*10=10kb
byte[] data=new byte[1024*10];
int len=-1;
long start = System.currentTimeMillis();//获取开始时间
//循环,使用缓冲流读取
while ((len=bis.read(data))!=-1) {//当每次读取字节不等于-1,表示都有数据
bos.write(data);//使用缓冲流写
}
System.out.println("复制完成");
long end = System.currentTimeMillis();//获取结束时间
System.out.println("复制完成,耗时:"+(end-start)+"ms");
fis.close();
fos.close();
}
}
原文链接:https://www.cnblogs.com/xingsir/p/12022841.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Spring Boot 实现配置文件加解密原理 2020-06-08
- 聊聊 OAuth 2.0 的 token expire_in 使用 2020-06-08
- Java跨平台原理(字节码文件、虚拟机) 以及Java安全性 2020-06-07
- 【Java-jxl插件】【Excel文件读写报错】jxl.read.biff.BiffE 2020-06-07
- IDEA下Maven的pom文件导入依赖出现Auto build completed wit 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash