matecloud
matecloud copied to clipboard
ExcelUtil类defaultExport方法有bug
private static void defaultExport(List> list, Class> pojoClass, String fileName, HttpServletResponse response, ExportParams exportParams) { Workbook workbook = ExcelExportUtil.exportExcel(exportParams,pojoClass,list); if (workbook != null); downLoadExcel(fileName, response, workbook); }
if (workbook != null)之后多了一个分号