ExcelWriter在关闭后不清空currentRow,以便复用

This commit is contained in:
Looly 2023-03-29 22:11:43 +08:00
parent cbc2246a37
commit e34eb4314b
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@
### 🐣新特性 ### 🐣新特性
* 【core 】 SerializeUtil.deserialize增加白名单类避免RCE vulnerabilityissue#3021@Github * 【core 】 SerializeUtil.deserialize增加白名单类避免RCE vulnerabilityissue#3021@Github
* 【poi 】 ExcelWriter在关闭后不清空currentRow以便复用issue#3025@Github
### 🐞Bug修复 ### 🐞Bug修复
* 【core 】 CollUtil.split优化切割列表参数判断避免OOMpr#3026@Github * 【core 】 CollUtil.split优化切割列表参数判断避免OOMpr#3026@Github

View File

@ -64,7 +64,7 @@ public class ExcelWriter extends ExcelBase<ExcelWriter> {
/** /**
* 当前行 * 当前行
*/ */
private AtomicInteger currentRow = new AtomicInteger(0); private final AtomicInteger currentRow;
/** /**
* 是否只保留别名对应的字段 * 是否只保留别名对应的字段
*/ */
@ -182,6 +182,7 @@ public class ExcelWriter extends ExcelBase<ExcelWriter> {
public ExcelWriter(Sheet sheet) { public ExcelWriter(Sheet sheet) {
super(sheet); super(sheet);
this.styleSet = new StyleSet(workbook); this.styleSet = new StyleSet(workbook);
this.currentRow = new AtomicInteger(0);
} }
// -------------------------------------------------------------------------- Constructor end // -------------------------------------------------------------------------- Constructor end
@ -1328,7 +1329,7 @@ public class ExcelWriter extends ExcelBase<ExcelWriter> {
super.close(); super.close();
// 清空对象 // 清空对象
this.currentRow = null; this.currentRow.set(0);
this.styleSet = null; this.styleSet = null;
} }