2 Star 0 Fork 0

20145324 / java-besti-is-2015-2016-2-20145324

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
BufferedIO 453 Bytes
一键复制 编辑 原始数据 按行查看 历史
20145324 提交于 2016-04-10 10:23 . new file
import java.io.*;
public class BufferedIO {
public static void dump(InputStream src,OutputStream dest) throws IOException{
try(InputStream input=new BufferedInputStream(src);
OutputStream output =new BufferedOutputStream(dest)){
byte[] data =new byte[1024];
int length;
while((length=input.read(data)) !=-1){
output.write(data,0,length);
}
}
}
}
Java
1
https://gitee.com/SJZGM10/java-besti-is-2015-2016-2-20145324.git
git@gitee.com:SJZGM10/java-besti-is-2015-2016-2-20145324.git
SJZGM10
java-besti-is-2015-2016-2-20145324
java-besti-is-2015-2016-2-20145324
第六周

搜索帮助