mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-04 04:37:59 +08:00
fix bug #1342
This commit is contained in:
parent
33fbc9288e
commit
99934e2b9f
@ -10,7 +10,8 @@
|
|||||||
|
|
||||||
### Bug修复
|
### Bug修复
|
||||||
* 【core 】 修复ZipUtil.unzip从流解压关闭问题(issue#I2B0S1@Gitee)
|
* 【core 】 修复ZipUtil.unzip从流解压关闭问题(issue#I2B0S1@Gitee)
|
||||||
* 【core 】 修复Excel07Writer写出表格错乱问题(issue#I2B57B@Gitee)
|
* 【poi 】 修复Excel07Writer写出表格错乱问题(issue#I2B57B@Gitee)
|
||||||
|
* 【poi 】 修复SheetRidReader读取字段错误问题(issue#1342@Github)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ public class SheetRidReader extends DefaultHandler {
|
|||||||
@Override
|
@Override
|
||||||
public void startElement(String uri, String localName, String qName, Attributes attributes) {
|
public void startElement(String uri, String localName, String qName, Attributes attributes) {
|
||||||
if (TAG_NAME.equalsIgnoreCase(localName)) {
|
if (TAG_NAME.equalsIgnoreCase(localName)) {
|
||||||
final String ridStr = attributes.getValue(SHEET_ID_ATTR);
|
final String ridStr = attributes.getValue(RID_ATTR);
|
||||||
if(StrUtil.isEmpty(ridStr)){
|
if(StrUtil.isEmpty(ridStr)){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user