黑马程序员技术交流社区
标题:
练习:复制文件 缓冲区
[打印本页]
作者:
fmi110
时间:
2015-10-1 21:53
标题:
练习:复制文件 缓冲区
a
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class T16 {
/**
* 16、使用带缓冲功能的字节流复制文件。
* @throws IOException
*/
public static void main(String[] args) throws IOException {
BufferedInputStream bin = new BufferedInputStream(new FileInputStream("c:\\ReflectDemo2.java"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("F:\\copy.java"));
byte[] bys = new byte[1024];
int len;
while((len=bin.read(bys))!=-1){
bos.write(bys,0,len);
bos.flush();
}
System.out.println("done");
}
}
复制代码
作者:
zenghua
时间:
2015-10-1 22:12
666666666666666666666666
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2