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

@@ -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;
}