Java下载文件,中文名乱码(attachment;filename=中文文件名)

发现搜到的全部一样的方案 new String(fileName.getBytes(), "ISO8859-1")

贴一个不一样的解决方案

使用URLEncoder.encode

String attachName = "这是中文名称文件.txt"//https://www.cnblogs.com/tomcatandjerry/p/11541871.html
response.setCharacterEncoding("utf-8");
response.setContentType("application/octet-stream");
response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(attachName, "UTF-8"));

  

 

posted on 2019-09-18 14:31  tomcat and jerry  阅读(11489)  评论(2编辑  收藏  举报

导航