mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复RowUtil传入参数错误问题
This commit is contained in:
parent
5637d37e21
commit
11655b0ad2
@ -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)
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user