@GetMapping("/download")
@ResponseBody
public?ResponseEntity?serveFile(@RequestParam?String?filename)?throws?IOException{
????filename=new?String(filename.getBytes(),"utf-8");//有沒(méi)有這句話
????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()));
}


2018-10-08
改為
2018-08-31
解決了嗎? 我也遇到了這個(gè)問(wèn)題