iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >springmvc中下载中文文件名称为下划线的解决方案
  • 502
分享到

springmvc中下载中文文件名称为下划线的解决方案

2024-04-02 19:04:59 502人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录springMVC下载中文文件名称为下划线这个问题很好解决java生成文件名时汉字变为下划线?注意这里两个编码springmvc下载中文文件名称为下划线 SpringBoot项目

springmvc下载中文文件名称为下划线

SpringBoot项目中,在下载文件的时候,通过封装ResponseEntity,将文件流写入body,这种下载文件的方式,造成了下载的文件名为正文显示为下划线的形式;

这个问题很好解决

直接将输入的文件名的编码格式定义成GBK格式;

如下代码

public static ResponseEntity<FileSystemResource> export(File file) throws UnsupportedEncodingException {
        if (file == null) {
            return null;
        }
        //这个位置对文件名进行编码
        String fileName = new String (file.getName().getBytes("GBK"),"ISO-8859-1");
        HttpHeaders headers = new HttpHeaders();
        headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
        headers.add("Content-Disposition", "attachment; filename=" +fileName);
        headers.add("Pragma", "no-cache");
        headers.add("Expires", "0");
        headers.add("Last-Modified", new Date().toString());
        headers.add("ETag", String.valueOf(System.currentTimeMillis()));
        return ResponseEntity
                .ok()
                .headers(headers)
                .contentLength(file.length())
                .contentType(MediaType.parseMediaType("application/octet-stream"))
                .body(new FileSystemResource(file));
    }

java生成文件名时汉字变为下划线?

public static void exportToexcel(String uid, String name, String htmlText, 
httpservletRequest request, HttpServletResponse response) {
      htmlText = htmlText.replaceFirst("<table>", "<tableFirst>");
      htmlText = htmlText.replaceAll("<table>",
            "<table cellpadding=\"3\" cellspacing=\"0\"  border=\"1\" rull=\"all\" 
style=\"border-collapse: collapse\">");
      htmlText = htmlText.replaceFirst("<tableFirst>", "<table>");
      try (OutputStream out = response.getOutputStream()) {
         String fileName = name+ "_" + DateUtils.getNow("yyyyMMddHHmmss");
//       fileName = new String(fileName.getBytes(),"utf-8")+ ".xls";
         if ("large".equals(htmlText)) {
            ReportingPo report = reportingService.getByUid(uid);
            Map<String, Object> fORMParameters = generationService.getFormParameters(request.getParameterMap(), 
report.getDataRange());
            ReportTable reportTable = generationService.getReportTable(report, formParameters);
            htmlText = reportTable.getHtmlText();
         }
//       response.reset();
         response.addHeader("Content-Disposition", "attachment;filename=" +
 new String(fileName.getBytes("utf-8"),"iso-8859-1")+ ".xls");
//       response.setHeader("Content-Disposition", String.format("attachment; filename=%s", fileName));
         response.setContentType("application/vnd.ms-excel; charset=utf-8");
         response.setCharacterEncoding("utf-8");
         response.addCookie(new Cookie("fileDownload", "true"));
//       out.write(new byte[] { (byte) 0xEF, (byte) 0xBB, (byte) 0xBF }); // 生成带bom的utf8文件
         out.write(htmlText.getBytes("utf-8"));
         out.flush();
      } catch (Exception ex) {
         throw new RuntimeException(ex);
      }
   }

注意这里两个编码

new String(fileName.getBytes("utf-8"),"iso-8859-1")+ ".xls"

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: springmvc中下载中文文件名称为下划线的解决方案

本文链接: https://www.lsjlt.com/news/163904.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作