JavaコードJavaのDOMが深いXML構造のために働いていない構文解析
XPathExpression readOcc = xpath.compile("//flexTM/attrGroupMany[contains(@name,'allergenRelatedInformation')]");
Object rObj = (Object) readOcc.evaluate(doc,XPathConstants.NODESET);
NodeList agm = (NodeList) rObj;
System.out.println("" + agm.getLength());
for (int i=0; i<agm.getLength(); i++){
Element element = (Element) agm.item(i).getChildNodes();
NodeList row = element.getElementsByTagName("row");
System.out.println("row len " + row.getLength());
for(int j=0;j<row.getLength(); j++){
Element eAttr = (Element) row.item(j);
System.out.println(eAttr.getNodeName());
NodeList attr = eAttr.getElementsByTagName("attrGroupMany");
for (int k=0;k<attr.getLength();k++){
Element eAgm = (Element) attr.item(k);
System.out.println(eAgm.getNodeName());
NodeList iattr = eAgm.getChildNodes();
System.out.println(iattr.getLength());
System.out.println(iattr.item(1).getNodeValue());
//NodeList iattr = eAgm.getElementsByTagName("row");
for(int l=0;i<iattr.getLength();l++){
Element iAttr = (Element) iattr.item(l);
System.out.println(iAttr.getNodeName());
//System.out.println(iAttr.getNodeValue());
}
}
}
上記のXMLではXML
<item>
<attrGroupMany name="manufacturer">
<row>
<attr name="gln">7689</attr>
<attr name="name">XYZ Inc</attr>
</row>
</attrGroupMany>
<attrGroupMany name="allergenRelatedInformation">
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AC</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AE</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AF</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AM</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
</attrGroupMany>
</item>
<item>
<attrGroupMany name="manufacturer">
<row>
<attr name="gln">7689</attr>
<attr name="name">XYZ Inc</attr>
</row>
</attrGroupMany>
<attrGroupMany name="allergenRelatedInformation">
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AC</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AE</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AF</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
<row>
<attr name="allergenSpecificationAgency">FDA</attr>
<attr name="allergenSpecificationName">BIG 8</attr>
<attrGroupMany name="allergen">
<row>
<attr name="allergenTypeCode">AM</attr>
<attr name="levelOfContainmentCode">FREE_FROM</attr>
</row>
</attrGroupMany>
</row>
</attrGroupMany>
</item>
、そこに2個の項目のタグがあり、それらのそれぞれが持つ、独自のノードattrGroupManyを持っています属性allergenRelatedInformation。私は親と子ノードのすべての値を印刷できるように、各レベルでxmlを解析しようとしています。上記のコードで何が間違っているのか、それが失敗しているかどうかはわかりません。
これは再帰的に行う必要があります。 –
_「失敗しています」は不十分な説明です。このサイトを効果的に使用する方法については、[help]にアクセスして[ask]をお読みください。 –
私は再帰的にループしない理由があります。誰かが私のコードで間違っている点を指摘できますか? Thx – user3092856