使用springboot实现文件下载时文件名中的中文变成下划线

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"))

你可能感兴趣的:(使用springboot实现文件下载时文件名中的中文变成下划线)