Commit 8de34e6b90e53455dc257536d7d844d04086a50d
1 parent
ea4e20ea
Exists in
master
add qname equals support about org.apache.xce SAXParseImpl
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
src/main/java/com/taover/easyexcel/analysis/v07/handlers/RowTagHandler.java
... | ... | @@ -35,7 +35,8 @@ public class RowTagHandler extends AbstractXlsxTagHandler { |
35 | 35 | public boolean isHiddenRow(Attributes attributes) { |
36 | 36 | int attLen = attributes.getLength(); |
37 | 37 | for(int i=0; i<attLen; ++i) { |
38 | - if(ExcelXmlConstants.ATTRIBUTE_HIDDEN.equals(attributes.getLocalName(i))) { | |
38 | + if(ExcelXmlConstants.ATTRIBUTE_HIDDEN.equals(attributes.getLocalName(i)) | |
39 | + || ExcelXmlConstants.ATTRIBUTE_HIDDEN.equals(attributes.getQName(i))) { | |
39 | 40 | return true; |
40 | 41 | } |
41 | 42 | } | ... | ... |