修复RowUtil传入参数错误问题

This commit is contained in:
Looly 2023-06-16 16:01:21 +08:00
parent 5637d37e21
commit 11655b0ad2
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.20(2023-06-14)
# 5.8.20(2023-06-16)
### 🐣新特性
* 【core 】 UrlQuery增加setStrict方法区分是否严格模式issue#I78PB1@Gitee
@ -18,6 +18,7 @@
* 【core 】 修复FileUtil.checkSlip方法缺陷issue#3140@Github
* 【extra 】 修复Sftp中exists方法父目录不存在时报错issue#I7CSQ9@Gitee
* 【extra 】 修复xml转json再转bean失败问题issue#3139@Github
* 【poi 】 修复RowUtil传入参数错误问题issue#3139@Github
-------------------------------------------------------------------------------------------------------------
# 5.8.19(2023-05-27)

View File

@ -126,7 +126,7 @@ public class RowUtil {
return;
}
// 插入位置的行如果插入的行不存在则创建新行
Row sourceRow = Optional.ofNullable(sheet.getRow(startRow)).orElseGet(() -> sheet.createRow(insertNumber));
Row sourceRow = getOrCreateRow(sheet, startRow);
// 从插入行开始到最后一行向下移动
sheet.shiftRows(startRow, sheet.getLastRowNum(), insertNumber, true, false);