fix #I2AOQW

This commit is contained in:
Looly 2020-12-27 03:20:14 +08:00
parent a50aba4a7b
commit b85430ee80
2 changed files with 3 additions and 3 deletions

View File

@ -170,5 +170,4 @@ public class JSONUtilTest {
" \"test\": \"\\\\地库地库\",\n" +
"}");
}
}
}

View File

@ -88,7 +88,8 @@ public class SheetRidReader extends DefaultHandler {
String rid = null;
String name = null;
for (int i = 0; i < length; i++) {
switch (attributes.getLocalName(i)) {
final String attrName = attributes.getQName(i);
switch (attrName) {
case SHEET_ID_ATTR:
sheetId = attributes.getValue(i);
break;