2

私はこの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);                   
   }
}

デバッグ時に children =4 の値を取得しています。しかし、ループごとに2つ取得する必要があります助けてください。

4

1 に答える 1

11

によって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);                   
}
于 2012-07-10T03:26:00.873 に答える