为了账号安全,请及时绑定邮箱和手机立即绑定

用时29ms

BufferedInputStream in = new BufferedInputStream(new FileInputStream(srcFile));
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(destFile));
int bytes;
byte[] buf = new byte[1024 * 8];
while ((bytes = in.read(buf)) > -1) {
   out.write(buf, 0, bytes);
}
out.flush();
in.close();
out.close();

正在回答

2 回答

嗯嗯 硬盘的速度可以的

0 回复 有任何疑惑可以回复我~

8M文件。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信