String attachName = new String(("Xxx.docx").getBytes(), "ISO-8859-1");response.setHeader("Content-disposition", "attachment;filename=" + attachName);
文件下载乱码:Word导出的接口使用GetMapping使用Request URL来获取文件的下载获取Word模版路径:使用InputStream工具类获取路径的文件// 使用InputStream流获取Word模版 InputStream fis = this.getClass().getResourceAsStream("/template/xxxTemplate.docx");
电脑