问答详情
源自:-

Spring boot中下载文件名称中文变___________下划线了,请问如何处理?

@GetMapping("/download")
@ResponseBody
public ResponseEntity serveFile(@RequestParam String filename) throws IOException{
    filename=new String(filename.getBytes(),"utf-8");//有没有这句话
    Resource file=new FileSystemResource("D:\\workspace\\idea_me\\demo\\upload-dir"+File.separator+ filename);
    HttpHeaders headers = new HttpHeaders();
    headers.add("Cache-Control", "no-cache, no-store, must-revalidate");
    headers.add("Content-Disposition", String.format("attachment; filename=\"%s\"", file.getFilename()));
    headers.add("Pragma", "no-cache");
    headers.add("Expires", "0");
    return ResponseEntity
            .ok()
            .headers(headers)
            .contentLength(file.contentLength())
            .contentType(MediaType.parseMediaType("application/octet-stream;charset=utf-8"))
            .body(new InputStreamResource(file.getInputStream()));
}


https://img3.mukewang.com/5ab49ffc0001db3113660744.jpg

https://img3.mukewang.com/5ab49ffc0001ee0d13660697.jpg

提问者:泥巴先生 2018-03-23 14:35

个回答

  • 有话好说别动枪
    2018-10-08 17:35:16

    file.getFilename()

    改为

    URLEncoder.encode(file.getFilename(), "utf-8")


  • dididi1
    2018-08-31 10:43:34

    解决了吗? 我也遇到了这个问题