码迷,mamicode.com
首页 > 编程语言 > 详细

Spring MVC文件下载的文件名编码问题

时间:2017-10-27 20:37:33      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:from   status   ==   try   download   length   col   guess   tty   

Spring MVC做文件下载功能时,遇到了文件名编码问题。经过百度,参考了以下两篇文章,解决了编码问题。

http://www.iefans.net/xiazai-wenjian-http-bianma-content-disposition/

https://yq.aliyun.com/articles/38945

最终代码如下:

    public ResponseEntity<InputStreamResource> downloadFile(Path filePath) 
            throws FileNotFoundException {
        File file = filePath.toFile();
        
        String mimeType = URLConnection.guessContentTypeFromName(file.getName());
        if (mimeType == null) {
            mimeType = MediaType.APPLICATION_OCTET_STREAM_VALUE;
        }
        
        HttpHeaders respHeaders = new HttpHeaders();
        respHeaders.set(HttpHeaders.CONTENT_TYPE, mimeType);
        respHeaders.setContentLength(file.length());
        String encodedFileName = file.getName();
        try {
            encodedFileName = URLEncoder.encode(encodedFileName, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            logger.error("文件名编码错误!", e);
        }
        respHeaders.set(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + encodedFileName + "\""
                + "; filename*=UTF-8‘‘" + encodedFileName);
        
        InputStreamResource isr = new InputStreamResource(new FileInputStream(file));
        return new ResponseEntity<InputStreamResource>(isr, respHeaders, HttpStatus.OK);
    }

先对原始文件名按UTF-8编码,再设置Content-Disposition。Content-Disposition中设置了两次filename,是为了兼容更多浏览器。

Spring MVC文件下载的文件名编码问题

标签:from   status   ==   try   download   length   col   guess   tty   

原文地址:http://www.cnblogs.com/tanzx/p/7744959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!