码迷,mamicode.com
首页 > 其他好文 > 详细

字节流高效缓冲区文件复制

时间:2018-03-11 12:03:51      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:缓冲区   string   class   log   null   trace   nal   exce   try   

    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();
            }
        }
    }

 

字节流高效缓冲区文件复制

标签:缓冲区   string   class   log   null   trace   nal   exce   try   

原文地址:https://www.cnblogs.com/luoyunyong/p/8543037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!