This commit is contained in:
Looly 2020-12-29 19:08:52 +08:00
parent 33fbc9288e
commit 99934e2b9f
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,8 @@
### Bug修复
* 【core 】 修复ZipUtil.unzip从流解压关闭问题issue#I2B0S1@Gitee
* 【core 】 修复Excel07Writer写出表格错乱问题issue#I2B57B@Gitee
* 【poi 】 修复Excel07Writer写出表格错乱问题issue#I2B57B@Gitee
* 【poi 】 修复SheetRidReader读取字段错误问题issue#1342@Github
-------------------------------------------------------------------------------------------------------------

View File

@ -113,7 +113,7 @@ public class SheetRidReader extends DefaultHandler {
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) {
if (TAG_NAME.equalsIgnoreCase(localName)) {
final String ridStr = attributes.getValue(SHEET_ID_ATTR);
final String ridStr = attributes.getValue(RID_ATTR);
if(StrUtil.isEmpty(ridStr)){
return;
}