下载文件名称乱码问题

后台使用FtpClient类获取服务器上的文件字节流传给Response对象的输出流属性来下载文件,响应头设置如下:

response.setContentType("multipart/form-data");
response.setHeader("Content-Disposition", "attachment;fileName="+fileName;  

filename是存储的真实文件名,在下载包含中文名的文件时会出现乱码。RFC1806可以看到Content-Disposition头的定义:

In the extended BNF notation of [RFC 822], the Content-Disposition
   header field is defined as follows:

        disposition := "Content-Disposition" ":"
                       disposition-type
                       *(";" disposition-parm)

        disposition-type := "inline"
                          / "attachment"
                          / extension-token
                          ; values are not case-sensitive

        disposition-parm := filename-parm / parameter

        filename-parm := "filename" "=" value;

   `Extension-token', `parameter' and `value' are defined according to
   [RFC 822] and [RFC 1521].

其中规定了Content-Disposition的格式,RFC5987中的3.2和4小节给出了通用表达式和字符编码例子,因此我们可以通过设置文件名的编码为utf-8来避免和前端浏览器不一致导致的乱码,现在的请求头设置如下:

response.setContentType("multipart/form-data");
response.setHeader("Content-Disposition", "attachment;fileName="+fileName;  

Chrome测试有效,其他浏览器没有测试。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值