XMLツリーに4つのレベルがあると仮定すると、レベル3は同じ息子を持つことができます-2回、つまり次のXMLで:
<Game>
<Round>
<roundNumber>1</roundNumber>
<Door>
<doorName>abd11</doorName>
<Value>
<xVal1>0</xVal1>
<xVal2>25</xVal2>
<pVal>0.31</pVal>
</Value>
<Value>
<xVal1>25</xVal1>
<xVal2>50</xVal2>
<pVal>0.04</pVal>
</Value>
<Value>
<xVal1>50</xVal1>
<xVal2>75</xVal2>
<pVal>0.19</pVal>
</Value>
<Value>
<xVal1>75</xVal1>
<xVal2>100</xVal2>
<pVal>0.46</pVal>
</Value>
</Door>
<Door>
<doorName>vvv1133</doorName>
<Value>
<xVal1>60</xVal1>
<xVal2>62</xVal2>
<pVal>1.0</pVal>
</Value>
</Door>
</Round>
<Round>
<roundNumber>2</roundNumber>
<Door>
<doorName>eee</doorName>
<Value>
<xVal1>0</xVal1>
<xVal2>-25</xVal2>
<pVal>0.31</pVal>
</Value>
<Value>
<xVal1>-25</xVal1>
<xVal2>-50</xVal2>
<pVal>0.04</pVal>
</Value>
<Value>
<xVal1>-50</xVal1>
<xVal2>-75</xVal2>
<pVal>0.19</pVal>
</Value>
<Value>
<xVal1>-75</xVal1>
<xVal2>-100</xVal2>
<pVal>0.46</pVal>
</Value>
</Door>
<Door>
<doorName>cc</doorName>
<Value>
<xVal1>-60</xVal1>
<xVal2>-62</xVal2>
<pVal>0.3</pVal>
</Value>
<Value>
<xVal1>-70</xVal1>
<xVal2>-78</xVal2>
<pVal>0.7</pVal>
</Value>
</Door>
</Round>
</Game>
私はDoors
それぞれに2つ持っていますRound
、そして問題は、Dom
またはSax
(またはそれが役立つ場合はJdom)を使用することです
ツリーを反復処理して、すべてのレベルのデータを取得しますか?
現時点では、レベルを「下げて」ラウンドを取得しました。ここで:
DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
Document doc = docBuilder.parse (new File("input.xml"));
// normalize text representation
doc.getDocumentElement ().normalize ();
System.out.println ("Root element of the doc is " + // would produce Game
doc.getDocumentElement().getNodeName());
NodeList roundNodes = doc.getElementsByTagName("Round"); // roundNodes are the Rounds
int totalNodes = roundNodes.getLength(); // 2 by the example
System.out.println("Total number of Rounds are : " + totalNodes);
for (int i = 0; i < roundNodes.getLength() ; i++)
{
Node node = roundNodes.item(i);
if (node.getNodeType() == Node.ELEMENT_NODE)
{
Element element = (Element)node;
NodeList firstDoorList = element.getElementsByTagName("Door");
Element firstDoorElement = (Element)firstDoorList.item(0);
NodeList textFNList = firstDoorElement.getChildNodes();
System.out.println("First Door : " + ((Node)textFNList.item(0)).getNodeValue().trim());
}
}
しかし、それは反復のための多くのコードのようです。
そのXMLのデータを抽出する簡単な方法はありますか?ラウンドごとに2つのドアがあり、ラウンド数がいくらかあると仮定します。
ありがとう