//推荐导出xls因为xlsx会导致office软件打不开 String fileName = new String("商品供应商表.xls".getBytes("UTF-8"), "iso-8859-1"); // 生成word文件的文件名 excelUtil.exportExcel(title, rowsName, dataList, fileName, response); } catch (Exception e) { e.printStackTrace(); } } 1. 2. ...