springboot 以IO流形式返回给前端

springboot 以IO流形式返回给前端,第1张

springboot 以IO流形式返回前端 1、Controller
@ApiOperation(value = "IO流返回给前端")
@GetMapping("fileView")
public void fileView(@ApiParam(value = "文件路径", required = true) @RequestParam String fileUrl, HttpServletResponse response) {
    fileService.fileView(fileUrl, response);
}
2、Service
    
    public void fileView(String fileUrl, HttpServletResponse response) {
        // 读取文件名 例:yyds.jpg
        String fileName = fileUrl.substring(fileUrl.lastIndexOf("/") + 1);
        try (FileInputStream inputStream = new FileInputStream(fileUrl);
             OutputStream outputStream = response.getOutputStream()) {
            byte[] data = new byte[1024];
            // 全文件类型(传什么文件返回什么文件流)
            response.setContentType("application/x-msdownload");
            response.setHeader("Content-Disposition", "attachment; filename="" + fileName + """);
            response.setHeader("Accept-Ranges", "bytes");
            int read;
            while ((read = inputStream.read(data)) != -1) {
                outputStream.write(data, 0, read);
            }
            // 将缓存区数据进行输出
            outputStream.flush();
        } catch (IOException e) {
            log.error("失败", e);
            throw new Exception("exception");
        }
    }
3、另外一种写法

如果为小文件,则可直接写入,无须循环,效率更高

byte[] data = new byte[inputStream.available()];
inputStream.read(data);
response.set
......
outputStream.write(data);

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存