修复cloneSheet参数错误导致非XSSFWorkbook错误命名问题

This commit is contained in:
Looly 2023-12-23 16:14:14 +08:00
parent e5888f6bc6
commit aa85eff8f5
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.24(2023-12-20)
# 5.8.24(2023-12-23)
### 🐣新特性
* 【cache 】 Cache增加get重载可自定义超时时间issue#I8G0DL@Gitee
@ -30,6 +30,7 @@
* 【core 】 修复PostgreSQL使用upsert字段大小写问题问题issue#I8PB4X@Gitee
* 【extra 】 修复TinyPinyinEngine可能的空指针问题issue#3437@Github
* 【core 】 修复graalvm原生打包使用http工具被转为file协议问题issue#I8PY3Y@Gitee
* 【poi 】 修复cloneSheet参数错误导致非XSSFWorkbook错误命名问题issue#I8QIBB@Gitee
-------------------------------------------------------------------------------------------------------------
# 5.8.23(2023-11-12)

View File

@ -189,7 +189,8 @@ public class ExcelBase<T extends ExcelBase<T>> implements Closeable {
sheet = workbook.cloneSheet(sheetIndex, newSheetName);
} else {
sheet = this.workbook.cloneSheet(sheetIndex);
this.workbook.setSheetName(sheetIndex, newSheetName);
// issue#I8QIBBclone后的sheet的index应该重新获取
this.workbook.setSheetName(workbook.getSheetIndex(sheet), newSheetName);
}
if (setAsCurrentSheet) {
this.sheet = sheet;