|
@@ -0,0 +1,238 @@
|
|
|
+package com.gyee.wisdom.alarm.sharding.util;
|
|
|
+import org.apache.poi.hssf.usermodel.*;
|
|
|
+
|
|
|
+import org.apache.poi.hssf.util.HSSFColor;
|
|
|
+import org.apache.poi.ss.usermodel.*;
|
|
|
+import org.apache.poi.ss.util.CellRangeAddress;
|
|
|
+import org.apache.poi.xssf.usermodel.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author :xugp
|
|
|
+ * @date :Created in 2022/10/17 16:25
|
|
|
+ * @description:
|
|
|
+ * @modified By:
|
|
|
+ * @version: $
|
|
|
+ */
|
|
|
+public class ExcelExportUtil {
|
|
|
+ /**
|
|
|
+ * 导出Excel
|
|
|
+ *
|
|
|
+ * @param sheetName sheet名称
|
|
|
+ * @param title 标题
|
|
|
+ * @param values 内容
|
|
|
+ * @param wb HSSFWorkbook对象
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static XSSFWorkbook getHSSFWorkbook(String sheetName, String[] title, String[][] values, XSSFWorkbook wb) {
|
|
|
+
|
|
|
+ // 第一步,创建一个HSSFWorkbook,对应一个Excel文件
|
|
|
+ if (wb == null)
|
|
|
+ wb = new XSSFWorkbook();
|
|
|
+
|
|
|
+ // 第二步,在workbook中添加一个sheet,对应Excel文件中的sheet
|
|
|
+ XSSFSheet sheet = wb.createSheet(sheetName);
|
|
|
+
|
|
|
+ // 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制
|
|
|
+ XSSFRow row = sheet.createRow(0);
|
|
|
+
|
|
|
+ // 第四步,创建单元格,并设置值表头 设置表头居中
|
|
|
+ XSSFCellStyle style = wb.createCellStyle();
|
|
|
+ style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式
|
|
|
+
|
|
|
+ //声明列对象
|
|
|
+ XSSFCell cell = null;
|
|
|
+
|
|
|
+ //创建标题
|
|
|
+ for (int i = 0; i < title.length; i++) {
|
|
|
+ cell = row.createCell(i);
|
|
|
+ cell.setCellValue(title[i]);
|
|
|
+ cell.setCellStyle(style);
|
|
|
+ }
|
|
|
+
|
|
|
+ //创建内容
|
|
|
+ for (int i = 0; i < values.length; i++) {
|
|
|
+ row = sheet.createRow(i + 1);
|
|
|
+ for (int j = 0; j < values[i].length; j++) {
|
|
|
+ //将内容按顺序赋给对应的列对象
|
|
|
+ row.createCell(j).setCellValue(values[i][j]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return wb;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 表显示字段
|
|
|
+ * @param wb
|
|
|
+ * @param sheet
|
|
|
+ * @param
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static int writeExcel(HSSFWorkbook wb, HSSFSheet sheet, List<String> titles, List<List<Object>> rows) {
|
|
|
+ int rowIndex = 0;
|
|
|
+ rowIndex = writeTitlesToExcel(wb, sheet, titles);
|
|
|
+ rowIndex = writeRowsToExcel(wb, sheet, rows, rowIndex);
|
|
|
+ autoSizeColumns(sheet, titles.size() + 1);
|
|
|
+ return rowIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ //表头样式
|
|
|
+ public static void showTitle(HSSFSheet sheet, int amount, HSSFWorkbook wb){
|
|
|
+ HSSFCellStyle cellStyle = wb.createCellStyle();
|
|
|
+ HSSFFont font = wb.createFont();
|
|
|
+ //设置字体首先要先引入一个字体的接口
|
|
|
+ font.setFontHeightInPoints((short) 14);//设置字体高度?24大小可修改(short)不改
|
|
|
+ font.setFontName("simsun");//设置什么样式的字体比如宋体什么的 Courier new字体样式可修改
|
|
|
+ font.setItalic(false);//倾斜字体
|
|
|
+ //设置粗体
|
|
|
+ font.setBoldweight(Short.MAX_VALUE);
|
|
|
+ cellStyle.setFont(font);
|
|
|
+ //第一行标题
|
|
|
+ //合并excel第一行
|
|
|
+ CellRangeAddress region = new CellRangeAddress(0, 0, 0, amount);
|
|
|
+ sheet.addMergedRegion(region);
|
|
|
+ HSSFRow oneRow = sheet.createRow(0);
|
|
|
+ oneRow.setHeightInPoints(25);
|
|
|
+ HSSFCell cell = oneRow.createCell(0);
|
|
|
+ cell.setCellValue("标题");
|
|
|
+ cell.setCellStyle(cellStyle);
|
|
|
+ //********************************************************
|
|
|
+ HSSFCellStyle cellStyle2 = wb.createCellStyle();
|
|
|
+ HSSFFont font2 = wb.createFont();
|
|
|
+ //设置字体首先要先引入一个字体的接口
|
|
|
+ font2.setFontHeightInPoints((short) 10);//设置字体高度?24大小可修改(short)不改
|
|
|
+ font2.setFontName("simsun");//设置什么样式的字体比如宋体什么的 Courier new字体样式可修改
|
|
|
+ font2.setItalic(false);//倾斜字体
|
|
|
+ font2.setColor(HSSFFont.COLOR_RED);
|
|
|
+ cellStyle2.setFont(font2);
|
|
|
+ //换行的话加一个\n就可以但是在样式中要设置他可以换行
|
|
|
+ cellStyle2.setWrapText(true);//设置可以换行
|
|
|
+ String remark="测试测试测试";
|
|
|
+ //合并第二行单元格,加一些说明 remark
|
|
|
+ CellRangeAddress region2 = new CellRangeAddress(1, 1, 0, amount);
|
|
|
+ sheet.addMergedRegion(region2);
|
|
|
+ HSSFRow twoRow = sheet.createRow(1);
|
|
|
+ twoRow.setHeightInPoints(100);
|
|
|
+ HSSFCell cel2 = twoRow.createCell(0);
|
|
|
+ cel2.setCellValue(remark);
|
|
|
+ cel2.setCellStyle(cellStyle2);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //列标题
|
|
|
+ private static int writeTitlesToExcel(HSSFWorkbook wb, HSSFSheet sheet, List<String> titles) {
|
|
|
+ int rowIndex = 2;
|
|
|
+ int colIndex = 0;
|
|
|
+ Font titleFont = wb.createFont();
|
|
|
+ //设置字体
|
|
|
+ titleFont.setFontName("simsun");
|
|
|
+ //设置粗体
|
|
|
+ titleFont.setBoldweight(Short.MAX_VALUE);
|
|
|
+ //设置字号
|
|
|
+ titleFont.setFontHeightInPoints((short) 14);
|
|
|
+ //设置颜色
|
|
|
+ titleFont.setColor(IndexedColors.BLACK.index);
|
|
|
+ HSSFCellStyle titleStyle = wb.createCellStyle();
|
|
|
+ //水平居中
|
|
|
+ titleStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
+ //垂直居中
|
|
|
+ titleStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
+ //设置图案颜色
|
|
|
+ //设置填充方案
|
|
|
+ titleStyle.setFillForegroundColor(HSSFColor.YELLOW.index);
|
|
|
+ //设置自定义填充颜色
|
|
|
+ HSSFPalette customPalette=wb.getCustomPalette();
|
|
|
+ customPalette.setColorAtIndex(HSSFColor.LIME.index, (byte) 242,(byte) 242, (byte) 242);
|
|
|
+ //设置图案样式
|
|
|
+ titleStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
|
|
|
+ titleStyle.setFont(titleFont);
|
|
|
+ setBorder(titleStyle);
|
|
|
+ Row titleRow = sheet.createRow(rowIndex);
|
|
|
+ titleRow.setHeightInPoints(50);
|
|
|
+ colIndex = 0;
|
|
|
+ for (String field : titles) {
|
|
|
+ Cell cell = titleRow.createCell(colIndex);
|
|
|
+ cell.setCellValue(field);
|
|
|
+ cell.setCellStyle(titleStyle);
|
|
|
+ colIndex++;
|
|
|
+ }
|
|
|
+ rowIndex++;
|
|
|
+ return rowIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设置内容
|
|
|
+ *
|
|
|
+ * @param wb
|
|
|
+ * @param sheet
|
|
|
+ * @param rows
|
|
|
+ * @param rowIndex
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private static int writeRowsToExcel(HSSFWorkbook wb, HSSFSheet sheet, List<List<Object>> rows, int rowIndex) {
|
|
|
+ int colIndex;
|
|
|
+ Font dataFont = wb.createFont();
|
|
|
+ dataFont.setFontName("simsun");
|
|
|
+ dataFont.setFontHeightInPoints((short) 12);
|
|
|
+ dataFont.setColor(IndexedColors.BLACK.index);
|
|
|
+ HSSFCellStyle dataStyle = wb.createCellStyle();
|
|
|
+ dataStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
+ dataStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
+ dataStyle.setFont(dataFont);
|
|
|
+ setBorder(dataStyle);
|
|
|
+ for (List<Object> rowData : rows) {
|
|
|
+ Row dataRow = sheet.createRow(rowIndex);
|
|
|
+ dataRow.setHeightInPoints(25);
|
|
|
+ colIndex = 0;
|
|
|
+ for (Object cellData : rowData) {
|
|
|
+ Cell cell = dataRow.createCell(colIndex);
|
|
|
+ if (cellData != null) {
|
|
|
+ cell.setCellValue(cellData.toString());
|
|
|
+ } else {
|
|
|
+ cell.setCellValue("");
|
|
|
+ }
|
|
|
+ cell.setCellStyle(dataStyle);
|
|
|
+ colIndex++;
|
|
|
+ }
|
|
|
+ rowIndex++;
|
|
|
+ }
|
|
|
+ return rowIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 自动调整列宽
|
|
|
+ *
|
|
|
+ * @param sheet
|
|
|
+ * @param columnNumber
|
|
|
+ */
|
|
|
+ private static void autoSizeColumns(Sheet sheet, int columnNumber) {
|
|
|
+ for (int i = 0; i < columnNumber; i++) {
|
|
|
+ int orgWidth = sheet.getColumnWidth(i)+300;
|
|
|
+ sheet.autoSizeColumn(i, true);
|
|
|
+ int newWidth = (int) (sheet.getColumnWidth(i) + 300);
|
|
|
+ if (newWidth > orgWidth) {
|
|
|
+ sheet.setColumnWidth(i, newWidth);
|
|
|
+ } else {
|
|
|
+ sheet.setColumnWidth(i, orgWidth);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设置边框
|
|
|
+ *
|
|
|
+ * @param style
|
|
|
+ */
|
|
|
+ private static void setBorder(HSSFCellStyle style) {
|
|
|
+ style.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
|
|
|
+ style.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
|
|
|
+ style.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
|
|
|
+ style.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
|
|
|
+ style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
|
|
|
+ style.setWrapText(true);//设置自动换行
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|