读写文件io流

这篇博客介绍了如何使用Java的FileInputStream和FileOutputStream进行文件复制,以及如何通过FileChannel和ByteBuffer实现更高效的文件复制操作。展示了从原始的循环读写到利用缓冲区和通道提高效率的转换过程。
摘要由CSDN通过智能技术生成

原版(喽)

@Test
    public void FileOutTest() {
        String filePath="C:/Users/...../Desktop/123.jpeg";
        String toPath="C:/Users/...../Desktop/123(1).png";
        FileInputStream fis=null;
        FileOutputStream fos=null;
        try {
            fis=new FileInputStream(filePath);
            fos=new FileOutputStream(toPath);
            byte[] bytes=new byte[1024];
            while (true){
                int len = fis.read(bytes);
                if(len!=-1){
                    fos.write(bytes,0,len);
                }else{
                    break;
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            try {
                if(fis!=null){
                    fis.close();
                }
                if(fos!=null){
                    fos.close();
                }
            }catch (Exception e){
                e.printStackTrace();
            }

        }
    }

新版(高效)

  @Test
    public void FileCache() {
        try {
            FileChannel fis = new FileInputStream(filePath).getChannel();
            FileChannel fos = new FileOutputStream(toPath).getChannel();
            ByteBuffer bb = ByteBuffer.allocate(1024 * 1024);
            while (true) {
                int read = fis.read(bb);
                if (read == -1) {
                    break;
                }
                bb.flip();
                fos.write(bb);
                bb.clear();
            }
            fis.close();
            fos.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值