当前位置:   article > 正文

JAVA实现向浏览器返回文件下载_java返回文件给浏览器

java返回文件给浏览器

功能:返回本地的某个文件(本人做的是返回zip压缩包)
注意:接口上一定要使用GET请求@GetMapping()
核心代码:

    /**
     * 将文件数据设置到响应头中返回
     * @param dstFile 文件的绝对路径
     * */
private void setResponseHeader(String dstFile) {
        ServletOutputStream output = null;
        try {
            String type = new MimetypesFileTypeMap().getContentType(dstFile);
            response.setContentType(type);
            response.setHeader("Content-Disposition", "attachment;fileName="+this.fileName + ".zip" );
            response.setCharacterEncoding("utf-8");

            File file = new File(dstFile);
            if (file.exists()) {
                FileInputStream fis = null;
                BufferedInputStream bis = null;
                byte[] buffer = new byte[4096];
                fis = new FileInputStream(dstFile);
                bis = new BufferedInputStream(fis);
                OutputStream os = response.getOutputStream();
                int i = bis.read(buffer);
                while (i != -1) {
                    os.write(buffer, 0, i);
                    i = bis.read(buffer);
                }
                try {
                    bis.close();
                    fis.close();
                    // 删除临时文件
                    file.delete();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }

        } catch (Exception e) {
			e.printStackTrace();
            //导出错误 重定向到错误页面
            try {
                response.sendRedirect(request.getContextPath() + "/error");
            } catch (IOException e1) {
                e.printStackTrace();
            }
        } finally {
            try {
                output.close();
            } catch (IOException e) {
                output = null;
            }
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/207135
推荐阅读
相关标签
  

闽ICP备14008679号