!351 excel导出存在合并项时,在初始化类时进行数据的处理,避免多次调用

Merge pull request !351 from 月夜/dev
This commit is contained in:
疯狂的狮子Li 2023-05-16 01:43:44 +00:00 committed by Gitee
commit c6324e80af
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -28,20 +28,19 @@ import java.util.Map;
@Slf4j
public class CellMergeStrategy extends AbstractMergeStrategy {
private final List<?> list;
private final List<CellRangeAddress> cellList;
private final boolean hasTitle;
private int rowIndex;
public CellMergeStrategy(List<?> list, boolean hasTitle) {
this.list = list;
this.hasTitle = hasTitle;
// 行合并开始下标
this.rowIndex = hasTitle ? 1 : 0;
this.cellList = handle(list, hasTitle);
}
@Override
protected void merge(Sheet sheet, Cell cell, Head head, Integer relativeRowIndex) {
List<CellRangeAddress> cellList = handle(list, hasTitle);
// judge the list is not null
if (CollUtil.isNotEmpty(cellList)) {
// the judge is necessary