为了解决中文文件名乱码的问题,通常都会通过URLEncoder转码的方式来解决,关键代码如下
response.setContentType( "application/x-msdownload");
response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));
但这样会出现的问题是,如果文件名有空格,下载下来文件名中的空格就会被+号替代,网上搜索大多数是URLEncoder.encode之后将+号替换成%20,这种做法指标不治本,如果文件名中有+号或%号等特殊符号,加号就会变成%20,%号就会变成%25输出,所以有特殊字符都不行。URLEncoder.encode可以解决中文名乱码问题,但无法解决文件名中包含特殊字符问题,所以正确的做法如下
response.setContentType( "application/x-msdownload");
fileName = new String(fileName.getBytes("gbk"), "iso8859-1");
response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
亲测有效
来源:CSDN
作者:2396706102
链接:https://blog.csdn.net/weixin_39806100/article/details/104679084