|
@@ -0,0 +1,100 @@
|
|
|
+package com.ruoyi.gljt.utils;
|
|
|
+
|
|
|
+import com.ruoyi.common.core.exception.ServiceException;
|
|
|
+import com.ruoyi.gljt.domain.GljtSqLrExport;
|
|
|
+import org.apache.poi.ss.usermodel.*;
|
|
|
+
|
|
|
+import java.io.*;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class ExcelTemplateUtils {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 将数据写入Excel模板
|
|
|
+ *
|
|
|
+ * @param dataList 导出数据列表
|
|
|
+ * @param templateFile 模板路径 (例如: "templates/gljt_export_template.xlsx")
|
|
|
+ * @return Excel文件的字节数组
|
|
|
+ */
|
|
|
+ public static byte[] exportExcel(List<GljtSqLrExport> dataList, File templateFile) {
|
|
|
+ try {
|
|
|
+ try {
|
|
|
+ FileInputStream fis = new FileInputStream(templateFile);
|
|
|
+ Workbook workbook = WorkbookFactory.create(fis);
|
|
|
+
|
|
|
+ Sheet sheet = workbook.getSheetAt(0);
|
|
|
+ CellStyle style = getTemplateStyle(workbook);
|
|
|
+
|
|
|
+ // 从第二行开始写入数据
|
|
|
+ int rowIndex = 1;
|
|
|
+ for (GljtSqLrExport data : dataList) {
|
|
|
+ Row row = sheet.createRow(rowIndex++);
|
|
|
+ fillRowData(row, data, style);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 调整列宽
|
|
|
+ adjustColumnWidth(sheet);
|
|
|
+
|
|
|
+ // 写入到字节数组
|
|
|
+ try (ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
|
|
|
+ workbook.write(bos);
|
|
|
+ return bos.toByteArray();
|
|
|
+ }
|
|
|
+ }catch (FileNotFoundException e) {
|
|
|
+ throw new ServiceException("未找到导出模板文件: " + e.getMessage());
|
|
|
+ }
|
|
|
+ } catch (IOException e) {
|
|
|
+ throw new ServiceException("导出Excel失败: " + e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void fillRowData(Row row, GljtSqLrExport data, CellStyle style) {
|
|
|
+ int colIndex = 0;
|
|
|
+
|
|
|
+ // 按照模板顺序填充数据
|
|
|
+ createCell(row, colIndex++, data.getXh(), style); // 序号
|
|
|
+ createCell(row, colIndex++, data.getDjsj(), style); // 登记时间
|
|
|
+ createCell(row, colIndex++, data.getSqrZjhm(), style); // 身份证号
|
|
|
+ createCell(row, colIndex++, data.getSqrXm(), style); // 姓名
|
|
|
+ createCell(row, colIndex++, data.getXb(), style); // 性别
|
|
|
+
|
|
|
+ createCell(row, colIndex++, data.getAge(), style); // 年龄
|
|
|
+ createCell(row, colIndex++, data.getMz(), style); // 民族
|
|
|
+ createCell(row, colIndex++, data.getHjdz(), style); // 住址
|
|
|
+ createCell(row, colIndex++, data.getYb(), style); // 邮政编码
|
|
|
+ createCell(row, colIndex++, data.getSqrLxdh(), style); // 电话
|
|
|
+ createCell(row, colIndex++, data.getXsbtlb(), style); // 补贴类别
|
|
|
+ createCell(row, colIndex++, data.getSndj(), style); // 健康状况
|
|
|
+ createCell(row, colIndex++, data.getYbzje(), style); // 月补助金额
|
|
|
+ Cell formulaCell = row.createCell(15);
|
|
|
+ formulaCell.setCellStyle(style);
|
|
|
+ formulaCell.setCellFormula("IF(AND(LEN(C2)=18,--MID(\"10X98765432\",MOD(SUMPRODUCT(MID(C2,ROW(INDIRECT(\"1:17\")),1)*{7;9;10;5;8;4;2;1;6;3;7;9;10;5;8;4;2}),11)+1,1)=RIGHT(C2,1)*1),\"有效\",\"无效\")");
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void createCell(Row row, int colIndex, String value, CellStyle style) {
|
|
|
+ Cell cell = row.createCell(colIndex);
|
|
|
+ cell.setCellValue(value != null ? value : "");
|
|
|
+ if (style != null) {
|
|
|
+ cell.setCellStyle(style);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private static CellStyle getTemplateStyle(Workbook workbook) {
|
|
|
+ CellStyle style = workbook.createCellStyle();
|
|
|
+ style.setAlignment(HorizontalAlignment.CENTER);
|
|
|
+ style.setVerticalAlignment(VerticalAlignment.CENTER);
|
|
|
+ style.setBorderTop(BorderStyle.THIN);
|
|
|
+ style.setBorderBottom(BorderStyle.THIN);
|
|
|
+ style.setBorderLeft(BorderStyle.THIN);
|
|
|
+ style.setBorderRight(BorderStyle.THIN);
|
|
|
+ return style;
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void adjustColumnWidth(Sheet sheet) {
|
|
|
+ for (int i = 0; i < 20; i++) { // 假设最多20列
|
|
|
+ sheet.autoSizeColumn(i);
|
|
|
+ int width = sheet.getColumnWidth(i);
|
|
|
+ sheet.setColumnWidth(i, width + 500);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|