首页 > 编程语言 > 详细

JavaWeb之Response文件下载(中文编码问题)

时间:2021-06-05 11:22:55      阅读:9      评论:0      收藏:0      [点我收藏+]

很久以前遇到过这样的问题,最近再次遇到,做个记录。

核心代码如下(这里采用Excel导出是EasyPoi):

@RequestMapping("/downloadPost")
   public void downloadPost(HttpServletResponse response) {
       try {
           Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams("博客园文章数据", "博客园文章数据"),
                   PostExcelEntity.class, postService.selectBasePostDataList());
           // 指定下载的文件名--设置响应头
           response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("博客园文章数据.xls", "UTF-8"));
           response.setContentType("application/vnd.ms-excel;charset=UTF-8");
           response.setHeader("Pragma", "no-cache");
           response.setHeader("Cache-Control", "no-cache");
           response.setDateHeader("Expires", 0);
           // 写出数据输出流到页面
           OutputStream output = response.getOutputStream();
           BufferedOutputStream bufferedOutPut = new BufferedOutputStream(output);
           workbook.write(bufferedOutPut);
           bufferedOutPut.flush();
           bufferedOutPut.close();
           output.close();
       } catch (IOException e) {
           e.printStackTrace();
       }
   }

 

JavaWeb之Response文件下载(中文编码问题)

原文:https://www.cnblogs.com/youcong/p/14851655.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!