mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复cloneSheet参数错误导致非XSSFWorkbook错误命名问题
This commit is contained in:
parent
e5888f6bc6
commit
aa85eff8f5
@ -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)
|
||||
|
@ -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#I8QIBB,clone后的sheet的index应该重新获取
|
||||
this.workbook.setSheetName(workbook.getSheetIndex(sheet), newSheetName);
|
||||
}
|
||||
if (setAsCurrentSheet) {
|
||||
this.sheet = sheet;
|
||||
|
Loading…
Reference in New Issue
Block a user