导出Excel 强制下载

v1.4.1
Parker 4 years ago
parent 3bfe5f4407
commit 167136bf06

@ -159,7 +159,7 @@ public class ExcelPlugin {
String filePath = fileName + excelTypeEnum.getValue(); String filePath = fileName + excelTypeEnum.getValue();
try { try {
fileName = new String(filePath.getBytes(), "ISO-8859-1"); fileName = new String(filePath.getBytes(), "ISO-8859-1");
response.addHeader("Content-Disposition", "filename=" + fileName); response.addHeader("Content-Disposition", "attachment; filename=" + fileName);
return response.getOutputStream(); return response.getOutputStream();
} catch (IOException e) { } catch (IOException e) {
// 创建文件失败 // 创建文件失败

Loading…
Cancel
Save