亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

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://img1.sycdn.imooc.com//5ab49ffc0001db3113660744.jpg

https://img1.sycdn.imooc.com//5ab49ffc0001ee0d13660697.jpg

正在回答

2 回答

file.getFilename()

改為

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


0 回復 有任何疑惑可以回復我~

解決了嗎? 我也遇到了這個問題

0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

Spring boot中下載文件名稱中文變___________下劃線了,請問如何處理?

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號