解決辦法:
將后綴名稱xlsx 改為 xls就可以了
部分代碼:
//最好設置xls格式,否則會導致wps能打開,微軟的excel打不開 String fileName = "xx表.xls"; response.setContentType("application/octet-stream"); // 響應內容格 response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8")); wb.write(response.getOutputStream()); wb.close();