修改导出响应头contentType

release
yishiqihuasheng 2 years ago
parent 88e272e8d9
commit 82744122a2
  1. 5
      dxhy-core/src/main/java/com/dxhy/core/controller/FtpDownloadController.java

@ -97,8 +97,9 @@ public class FtpDownloadController extends AbstractController {
if ("1".equals(serviceType)) {
response.setContentType(this.getContentType(fileName));
} else {
response.setContentType("application/octet-stream");
response.setContentType("application/vnd.ms-excel");
// response.setContentType("application/octet-stream");
// response.setContentType("application/vnd.ms-excel");
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
}
response.setHeader("Content-disposition",
"attachment; filename=" + new String(fileName.getBytes(StandardCharsets.UTF_8), "ISO8859-1"));

Loading…
Cancel
Save