使用谷歌浏览器,导出excel的文件名是正常的;使用safari浏览器,导出的文件名是unicode编码格式的。使用如下方式可以解决:
response.setHeader("Content-Disposition", "attachment;filename*=utf-8''"
+ URLEncoder.encode(fileName, "UTF-8") + ".xlsx");
使用谷歌浏览器,导出excel的文件名是正常的;使用safari浏览器,导出的文件名是unicode编码格式的。使用如下方式可以解决:
response.setHeader("Content-Disposition", "attachment;filename*=utf-8''"
+ URLEncoder.encode(fileName, "UTF-8") + ".xlsx");
本文标题:解决不同浏览器导出excel文件名乱码问题
本文链接:https://www.haomeiwen.com/subject/rdhrdktx.html
网友评论