第一步 加入依賴 java
<!-- excel 導出 --> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.14</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.14</version> </dependency>
第二部 添加導出工具類apache
package com.hello.util; import org.apache.poi.hssf.usermodel.*; import org.apache.poi.hssf.util.HSSFColor; import org.apache.poi.ss.util.CellRangeAddress; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.OutputStream; import java.util.List; /** * @Title: * @TODO: * @Created By yangjie.idea@gmail.com on 2018/10/18/018 16:24 * @param */ public class ExportToExcelUtil { /** * 導出excel * @param title 導出表的標題 * @param rowsName 導出表的列名 * @param dataList 須要導出的數據 * @param fileName 生成excel文件的文件名 * @param response */ public void exportExcel(String title,String[] rowsName,List<Object[]> dataList,String fileName,HttpServletResponse response) throws Exception{ OutputStream output = response.getOutputStream(); response.reset(); response.setHeader("Content-disposition","attachment; filename="+fileName); response.setContentType("application/msexcel"); this.export(title,rowsName,dataList,fileName,output); this.close(output); } /** * @Title: * @TODO:導出數據 * @Created By yangjie.idea@gmail.com on 2018/10/18/018 16:25 * @param */ private void export(String title,String[] rowName,List<Object[]> dataList,String fileName,OutputStream out) throws Exception { try { HSSFWorkbook workbook = new HSSFWorkbook(); // 建立工做簿對象 HSSFSheet sheet = workbook.createSheet(title); // 建立工做表 HSSFRow rowm = sheet.createRow(0); // 產生表格標題行 HSSFCell cellTiltle = rowm.createCell(0); //建立表格標題列 // sheet樣式定義; getColumnTopStyle(); getStyle()均爲自定義方法 --在下面,可擴展 HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);// 獲取列頭樣式對象 HSSFCellStyle style = this.getStyle(workbook); // 獲取單元格樣式對象 //合併表格標題行,合併列數爲列名的長度,第一個0爲起始行號,第二個1爲終止行號,第三個0爲起始列號,第四個參數爲終止列號 sheet.addMergedRegion(new CellRangeAddress(0, 1, 0, (rowName.length - 1))); cellTiltle.setCellStyle(columnTopStyle); //設置標題行樣式 cellTiltle.setCellValue(title); //設置標題行值 int columnNum = rowName.length; // 定義所需列數 HSSFRow rowRowName = sheet.createRow(2); // 在索引2的位置建立行(最頂端的行開始的第二行) // 將列頭設置到sheet的單元格中 for (int n = 0; n < columnNum; n++) { HSSFCell cellRowName = rowRowName.createCell(n); // 建立列頭對應個數的單元格 cellRowName.setCellType(HSSFCell.CELL_TYPE_STRING); // 設置列頭單元格的數據類型 HSSFRichTextString text = new HSSFRichTextString(rowName[n]); cellRowName.setCellValue(text); // 設置列頭單元格的值 cellRowName.setCellStyle(columnTopStyle); // 設置列頭單元格樣式 } // 將查詢出的數據設置到sheet對應的單元格中 for (int i = 0; i < dataList.size(); i++) { Object[] obj = dataList.get(i); // 遍歷每一個對象 HSSFRow row = sheet.createRow(i + 3); // 建立所需的行數 for (int j = 0; j < obj.length; j++) { HSSFCell cell = null; // 設置單元格的數據類型 if (j == 0) { cell = row.createCell(j, HSSFCell.CELL_TYPE_NUMERIC); cell.setCellValue(i + 1); } else { cell = row.createCell(j, HSSFCell.CELL_TYPE_STRING); if (!"".equals(obj[j]) && obj[j] != null) { cell.setCellValue(obj[j].toString()); // 設置單元格的值 } } cell.setCellStyle(style); // 設置單元格樣式 } } // 讓列寬隨着導出的列長自動適應 for (int colNum = 0; colNum < columnNum; colNum++) { int columnWidth = sheet.getColumnWidth(colNum) / 256; for (int rowNum = 0; rowNum < sheet.getLastRowNum(); rowNum++) { HSSFRow currentRow; // 當前行未被使用過 if (sheet.getRow(rowNum) == null) { currentRow = sheet.createRow(rowNum); } else { currentRow = sheet.getRow(rowNum); } if (currentRow.getCell(colNum) != null) { HSSFCell currentCell = currentRow.getCell(colNum); if (currentCell.getCellType() == HSSFCell.CELL_TYPE_STRING) { int length = currentCell.getStringCellValue() .getBytes().length; if (columnWidth < length) { columnWidth = length; } } } } if (colNum == 0) { sheet.setColumnWidth(colNum, (columnWidth - 2) * 256); } else { sheet.setColumnWidth(colNum, (columnWidth + 4) * 256); } } workbook.write(out); } catch (Exception e) { e.printStackTrace(); } } /** * @Title: * @TODO:列頭單元格樣式 * @Created By yangjie.idea@gmail.com on 2018/10/18/018 16:25 * @param */ private HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) { // 設置字體 HSSFFont font = workbook.createFont(); // 設置字體大小 font.setFontHeightInPoints((short) 11); // 字體加粗 font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); // 設置字體名字 font.setFontName("Courier New"); // 設置樣式; HSSFCellStyle style = workbook.createCellStyle(); // 設置底邊框; style.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 設置底邊框顏色; style.setBottomBorderColor(HSSFColor.BLACK.index); // 設置左邊框; style.setBorderLeft(HSSFCellStyle.BORDER_THIN); // 設置左邊框顏色; style.setLeftBorderColor(HSSFColor.BLACK.index); // 設置右邊框; style.setBorderRight(HSSFCellStyle.BORDER_THIN); // 設置右邊框顏色; style.setRightBorderColor(HSSFColor.BLACK.index); // 設置頂邊框; style.setBorderTop(HSSFCellStyle.BORDER_THIN); // 設置頂邊框顏色; style.setTopBorderColor(HSSFColor.BLACK.index); // 在樣式用應用設置的字體; style.setFont(font); // 設置自動換行; style.setWrapText(false); // 設置水平對齊的樣式爲居中對齊; style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 設置垂直對齊的樣式爲居中對齊; style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); return style; } /** * @Title: * @TODO:列數據信息單元格樣式 * @Created By yangjie.idea@gmail.com on 2018/10/18/018 16:26 * @param */ private HSSFCellStyle getStyle(HSSFWorkbook workbook) { // 設置字體 HSSFFont font = workbook.createFont(); // 設置字體大小 // font.setFontHeightInPoints((short)10); // 字體加粗 // font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); // 設置字體名字 font.setFontName("Courier New"); // 設置樣式; HSSFCellStyle style = workbook.createCellStyle(); // 設置底邊框; style.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 設置底邊框顏色; style.setBottomBorderColor(HSSFColor.BLACK.index); // 設置左邊框; style.setBorderLeft(HSSFCellStyle.BORDER_THIN); // 設置左邊框顏色; style.setLeftBorderColor(HSSFColor.BLACK.index); // 設置右邊框; style.setBorderRight(HSSFCellStyle.BORDER_THIN); // 設置右邊框顏色; style.setRightBorderColor(HSSFColor.BLACK.index); // 設置頂邊框; style.setBorderTop(HSSFCellStyle.BORDER_THIN); // 設置頂邊框顏色; style.setTopBorderColor(HSSFColor.BLACK.index); // 在樣式用應用設置的字體; style.setFont(font); // 設置自動換行; style.setWrapText(false); // 設置水平對齊的樣式爲居中對齊; style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 設置垂直對齊的樣式爲居中對齊; style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); return style; } /** * 關閉輸出流 * @param os */ private void close(OutputStream os) { if (os != null) { try { os.close(); } catch (IOException e) { e.printStackTrace(); } } } }
第三部 測試app
/** * @Title: * @TODO:數據統計 導出 * @Created By yangjie.idea@gmail.com on 2018/10/18/018 10:24 * @param */ @RequestMapping("/exportToExcel") public void exportExcelData( HttpServletResponse response){ Log.logger.info("數據統計導出開始" ); // 定義表的標題 String title = "數據統計"; //定義表的列名 String[] rowsName = new String[] {"序號", "字段", "被保險人", "險種", "實收保費", "系統跟單費用比例%", "已結收付費", "已結收開流程","追加金額", "字段","車牌號", "保險費","簽單保費","出單機構", "添加日期"}; //定義表的內容 List<Object[]> dataList = new ArrayList<Object[]>(); List<PscSettlementBatchDetailListVO> list = detailInfoMapper.queryInvoiceSettlementBatchDetailPageExport(); int i = 0; for(PscSettlementBatchDetailListVO vo:list){ Object[] objs = new Object[15]; objs[1] = vo.getPolicyNo(); objs[2] = vo.getInsuredPerson(); objs[3] = vo.getInsuranceType().equals("1")?"商業險":(vo.getInsuranceType().equals("2")?"交強險":"其餘險"); objs[4] = vo.getInsuranceAmount(); objs[5] = vo.getDocumentaryCostRate(); objs[6] = vo.getPaidSettlementAmount(); objs[7] = vo.getPaidStatus().equals(1)?"已打包":(vo.getPaidStatus().equals(2)?"已開":"未打包"); objs[8] = vo.getAdditionalAmount(); objs[9] = vo.getAddStatus().equals(1)?"已打包":(vo.getAddStatus().equals(2)?"已開":"未打包"); objs[10] = vo.getLicensePlateNo(); objs[11] = vo.getInsuranceAmount(); objs[12] = vo.getWrittenInsuranceAmount(); objs[13] = vo.getIcOrgName(); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); String date = df.format(vo.getAddTime()); objs[14] = date; dataList.add(i++,objs); } // 建立ExportExcel對象 ExportToExcelUtil excelUtil = new ExportToExcelUtil(); try{ String fileName= new String("數據統計.xlsx".getBytes("UTF-8"),"iso-8859-1"); excelUtil.exportExcel(title,rowsName,dataList,fileName,response); Log.logger.info("數據統計導出結束" ); }catch(Exception e){ e.printStackTrace(); } }
測試結果ide
請使用手機"掃一掃"x