POI导出Excel,复制行

在日常开发中,导出Excel应该是很常见了,最近有一个需求要动态填充模板内容,试了很多办法,最后采用复制行来搞定。

一、先看看需要动态赋值的模板

excel模板.png

上图显示的可多填,都有可能出现多个保证人或者房产抵押信息,这时候就要根据内容动态修改模板,然后再赋值导出了。

二、POI复制行核心代码

/**
 * 行复制功能
 * @param wb 工作簿
 * @param fromRow 从哪行开始
 * @param toRow 目标行
 * @param copyValueFlag true则连同cell的内容一起复制
 */
public void copyRow(Workbook wb, Row fromRow, Row toRow, boolean copyValueFlag) {
    toRow.setHeight(fromRow.getHeight());

    for (Iterator cellIt = fromRow.cellIterator(); cellIt.hasNext();) {
        Cell tmpCell = cellIt.next();
        Cell newCell = toRow.createCell(tmpCell.getColumnIndex());
        copyCell(wb, tmpCell, newCell, copyValueFlag);
    }

    Sheet worksheet = fromRow.getSheet();

    for (int i = 0; i < worksheet.getNumMergedRegions(); i++) {
        CellRangeAddress cellRangeAddress = worksheet.getMergedRegion(i);
        if (cellRangeAddress.getFirstRow() == fromRow.getRowNum()) {
            CellRangeAddress newCellRangeAddress = new CellRangeAddress(toRow.getRowNum(),
                    (toRow.getRowNum() + (cellRangeAddress.getLastRow() - cellRangeAddress.getFirstRow())),
                    cellRangeAddress.getFirstColumn(), cellRangeAddress.getLastColumn());
            worksheet.addMergedRegionUnsafe(newCellRangeAddress);
        }
    }
}

三、POI复制单元格核心代码

/**
 * 复制单元格
 * @param srcCell
 * @param distCell
 * @param copyValueFlag true则连同cell的内容一起复制
 */
public void copyCell(Workbook wb, Cell srcCell, Cell distCell, boolean copyValueFlag) {
    CellStyle newStyle = wb.createCellStyle();
    CellStyle srcStyle = srcCell.getCellStyle();

    newStyle.cloneStyleFrom(srcStyle);
    newStyle.setFont(wb.getFontAt(srcStyle.getFontIndex()));

    // 样式
    distCell.setCellStyle(newStyle);

    // 内容
    if (srcCell.getCellComment() != null) {
        distCell.setCellComment(srcCell.getCellComment());
    }

    // 不同数据类型处理
    CellType srcCellType = srcCell.getCellTypeEnum();
    distCell.setCellType(srcCellType);

    if (copyValueFlag) {
        if (srcCellType == CellType.NUMERIC) {
            if (DateUtil.isCellDateFormatted(srcCell)) {
                distCell.setCellValue(srcCell.getDateCellValue());
            } else {
                distCell.setCellValue(srcCell.getNumericCellValue());
            }
        } else if (srcCellType == CellType.STRING) {
            distCell.setCellValue(srcCell.getRichStringCellValue());
        } else if (srcCellType == CellType.BLANK) {

        } else if (srcCellType == CellType.BOOLEAN) {
            distCell.setCellValue(srcCell.getBooleanCellValue());
        } else if (srcCellType == CellType.ERROR) {
            distCell.setCellErrorValue(srcCell.getErrorCellValue());
        } else if (srcCellType == CellType.FORMULA) {
            distCell.setCellFormula(srcCell.getCellFormula());
        }
    }
}

四、最后看看模板导出效果

导出结果.png

五、Gitee仓库地址

该示例工程已完善并提交到gitee仓库,地址如下:

rowcopy

你可能感兴趣的:(POI导出Excel,复制行)