package test.stream;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;
/**
* 过滤流,需要使用已经存在的节点流来构造,提供带缓冲的读写,提高了读写的效率。
* @author Frost.Yen
* @E-mail 871979853@qq.com
* @date 2016年4月13日
*/
public class TestBufferedSteam01 {
public static void main(String[] args) {
long startTime = new Date().getTime();
FileInputStream fis = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
fis = new FileInputStream("D:\\FrostYen\\software\\Adobe\\FlashBuilder_4_7_LS10.exe");
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(new FileOutputStream("E:\\JAVA\\Examples\\To Learn\\src\\test\\stream\\c.exe"));
byte[] buf = new byte[1024];
int len = 0;
while((len = bis.read(buf))>=0){
bos.write(buf, 0, len);
}
//bos.flush();当关闭流 的时候自动flush
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
//当关闭流 的时候自动flush
if(bis!=null)
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
if(bos!=null)
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
long endTime = new Date().getTime();
//拷贝所耗时间,测试性能
System.out.println((endTime-startTime)/1000);
}
}