博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字节流高效缓冲区文件复制
阅读量:6835 次
发布时间:2019-06-26

本文共 792 字,大约阅读时间需要 2 分钟。

public static void fileCopy2BufferByte(String oldFileName,String newFileName){        BufferedInputStream bis = null;        BufferedOutputStream bos = null;        try{            bis = new BufferedInputStream(new FileInputStream(oldFileName));            bos = new BufferedOutputStream(new FileOutputStream(newFileName));            byte[] bytes = new byte[1024];            int len = -1;            while ((len = bis.read(bytes))!=-1)bos.write(bytes,0,len);        }catch (Exception e){            e.printStackTrace();        }finally {            try {                if(bis!=null)bis.close();                if(bos!=null)bos.close();            }catch (IOException ee){                ee.printStackTrace();            }        }    }

 

转载于:https://www.cnblogs.com/luoyunyong/p/8543037.html

你可能感兴趣的文章
sql server 索引阐述系列七 索引填充因子与碎片
查看>>
redis内存策略
查看>>
filter防盗链
查看>>
shell脚本实现ssh自动登录远程服务器示例
查看>>
网络接口和全屏接口的使用
查看>>
1.4(JavaScript学习笔记) window对象的属性及方法
查看>>
IE6下兼容问题(转载)
查看>>
Problem E: 类的初体验(V)
查看>>
如何衡量个人在各自团队的效率和绩效
查看>>
testlink的下载地址
查看>>
通过cell里的UIView获得cell的indexpath
查看>>
【转载】请重新认识你作为程序员的价值
查看>>
canvas 之 - 精灵 钟表动画
查看>>
期末作品检查
查看>>
微软高层:拟改变支付方式 应对盗版问题
查看>>
微软中国:Morro可能将不进入中国市场
查看>>
静态方法、实例方法、继承
查看>>
&和&&的区别
查看>>
yuv和yCbCr的差异
查看>>
引擎设置
查看>>