1

Androidでdom xmlパーサーを使用しています。私のソースxmlには、親と子に同じ名前が含まれています。

XMLデータの解析中に親タグと子タグを区別する方法は?

これは私のサンプルxmlです。

<alerts>
    <alert>
       <code>QWEOS</code>
       <alert>this is alert1</alert>
       <description>this is description</description>
     </alert>
     <alert>
       <code>SDFHP</code>
       <alert>this is alert2</alert>
       <description>this is description</description>
     </alert>      
</alerts>
4

1 に答える 1

2

文書ドキュメントを作成できます。

 NodeList nodes = doc.getElementsByTagName("parentnode");

    Element e = (Element) nodes.item(i);
    flag =XMLfunctions.getValue(e,"childnode");
于 2012-11-06T07:16:09.177 に答える