springboot导出Excel,文件名乱码

使用Springboot的时候,导出Excel表,文件名显示乱码。
解决方式:

response.setContentType(“application/vnd.ms-excel”);
response.setHeader(“Content-Disposition”, “attachment;filename=” + fileName + “;filename*=utf-8’’”+ URLEncoder.encode(fileName, “UTF-8”));

你可能感兴趣的:(springboot,java)