新方式使用IO流

新方式使用IO流,第1张

新方式使用IO流

Pom.xml配置

        
            commons-io
            commons-io
            2.6
        

流的调用

        //读取文件数据
        FileInputStream fileInputStream = new FileInputStream("C://Users//86152//Videos//Captures//8608a8fd6e9a3ba0aef49703c5e1ff03.mp4");

        //获取response字节输出流
        ServletOutputStream outputStream = response.getOutputStream();
        //完成流的copy

        //  byte[] buff = new byte[1024];
        //  int len = 0;
        //  while ((len = fileInputStream.read(buff)) != -1){
        //      outputStream.write(buff,0,len);
        //  }
        IOUtils.copy(fileInputStream,outputStream);


        fileInputStream.close();

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5684049.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存