使用springboot实现文件下载时文件名中的中文变成下划线
程序员文章站
2023-12-24 17:08:39
...
response.setContentType("application/force-download");
//通过设置头信息给文件命名,也即是,在前端,文件流被接受完还原成原文件的时候会以你传递的文件名来命名
response.addHeader("Content-Disposition", String.format("attachment; filename=\"%s\"", URLEncoder.encode(tempFile.getName(), "utf-8")));
重点是这一句
URLEncoder.encode(tempFile.getName(), "utf-8"))
转载于:https://www.jianshu.com/p/c2feb703d21a