您好我有一个xml,如下所示
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<A>
<B>
<X1>
<Name>ZZZsaqw</Name>
</X1>
<X1>
<Name>ZZZsdasda</Name>
</X1>
<X1>
<Name>ZZZsdsd</Name>
</X1>
<S>17000</S>
<U>18000</U>
<V>17000</V>
<B>
<C>
<X1>
<Name>ZZZasqw</Name>
</X1>
<X1>
<Name>ZZZsdsd</Name>
</X1>
<X1>
<Name>ZZ</Name>
</X1>
<S>17000</S>
<U>18000</U>
<V>17000</V>
<C>
<D>
<X1>
<Name>ZZZx</Name>
</X1>
<X1>
<Name>ZZZzz</Name>
</X1>
<X1>
<Name>ZZZsaa</Name>
</X1>
<S>17000</S>
<U>18000</U>
<V>17000</V>
</D>
<A>
我对X1标签感兴趣。我需要分别阅读它们的父标签,可以是B,C或D. 所以有时我只对属于B的X1标签感兴趣,有时属于C.如何做到这一点?我使用了下面显示的DOM解析器,但是当我计算它们时,它将计数显示为9,因为它应该是3.请帮我怎么做。
NodeList plist = doc.getElementsByTagName("A");
System.out.println("The length of A is pList is:"+plist.getLength());
//get the contents of the A
for (int temp = 0; temp < plist.getLength(); temp++)
{
Node nNode = plist.item(temp);
if (nNode.getNodeType() == Node.ELEMENT_NODE)
{
//Element eElement = (Element) nNode;
NodeList typicalCriticalPath = doc.getElementsByTagName("B");
System.out.println("The length of B is:"+typicalCriticalPath.getLength());
//get the contents of the typical critical path
for(int temp1 = 0; temp1<typicalCriticalPath.getLength();temp1++)
{
Node typCriticalPathNode = typicalCriticalPath.item(temp);
if (typCriticalPathNode.getNodeType() == Node.ELEMENT_NODE)
{
Element ele = (Element) typCriticalPathNode;
NodeList planItemSection = doc.getElementsByTagName("X1");
System.out.println("The length of X1 is:"+planItemSection.getLength());
}
}
}
}
//The output for this is like this-
//The length of A is pList is:1
//The length of B is:1
//The length of X1 is:9
有人可以指出我哪里出错了吗?要做什么才能使标签只有父标签。
谢谢!
答案 0 :(得分:4)
NodeList planItemSection = doc.getElementsByTagName(“X1”);
这就是文件中的所有X1。
我想你想要
NodeList planItemSection = ele.getElementsByTagName(“X1”);
,其中ele
是父元素。
您可能还想查看这些查询的XPath。