如何在Java中使用DOM获取子节点

时间:2012-07-10 03:14:28

标签: xml dom

我有这个XML。

 <employees>
  <employee tag="FT" name="a">
     <password tag="1"/>
     <password tag="2"/>
</employee>
<employee tag="PT" name="b">
     <password tag="3"/>
     <password tag="4"/>
</employee>
</employees>

我正在尝试获取每个员工的子节点并将子节点的标记值设为 密码在列表中的标记值。

nl = doc.getElementsByTagName("employee");

for(int i=0;i<nl.getLength();i++){
 NamedNodeMap nnm = nl.item(i).getAttributes(); 
 NodeList children = nl.item(i).getChildNodes();
 passwordList = new ArrayList<String>();
 for(int j=0; j<children.getLength();j++){
   NamedNodeMap n = children.item(j).getAttributes();
   passwordTagAttr=(Attr) n.getNamedItem("tag");
   passwordTag=stopTagAttr.getValue();  
   passwordList.add(passwordTag);                   
   }
}

我在调试时得到的孩子值= 4。但我应该为每个循环得到它2 请帮忙。

1 个答案:

答案 0 :(得分:10)

NodeList返回的getChildNodes()包含Element个子节点(在这种情况下您关心的是这个)以及Node本身的属性子节点(你不这样做。

for(int j=0; j<children.getLength();j++) {
   if (children.item(j) instanceof Element == false)
       continue;

   NamedNodeMap n = children.item(j).getAttributes();
   passwordTagAttr=(Attr) n.getNamedItem("tag");
   passwordTag=stopTagAttr.getValue();  
   passwordList.add(passwordTag);                   
}