0
我的XML字符串解析XML是這樣的:
無法使用jsoup
<facebookfriends>
<data>
<id> 501334283</id>
<location>
<id>46464 </id>
<name>abc </name>
</location>
<name> Name Something</name>
<education>
<school>
<id> 45454 </id>
<name> SSSSSSSSSS</name>
</school>
<year>
<id> 45353</id>
<name> 2001</name>
</year>
<type>High School </type>
</education>
<education>
<school>
<id>
134960646529265</id>
<name> SSS , University</name>
</school>
<year>
<id> 132393000129123</id>
<name> 2001</name>
</year>
<type>High School </type>
</education>
<education>
<concentration>
<id> 6868</id>
<name> Computer Science and Engineering
</name>
</concentration>
<school>
<id> 86868</id>
<name>
Hellio
</name>
</school>
<year>
<id> 4646</id>
<name> 2008</name>
</year>
<type>College </type>
</education>
</data>
<data>XYZ</data>
</facebookfriends>
我怎樣才能得到教育列表意味着學校名稱。我的要求是這樣的,從第一個數據標籤開始和數據獲取教育詳細信息列表,然後第二個數據標籤開始,第二個數據標籤結束和第三個等。所以我嘗試過這樣,但不能獲取數據。
StringReader reader = new StringReader(xmlbody);//XML body is my xml string
InputSource source = new InputSource(reader);
Document document = dbBuilder.parse(source);
NodeList dataList = document.getElementsByTagName("data");
for(int i=0;i<dataList.getLength();i++) {
Node node = dataList.item(i);
if(node.getNodeType() == Node.ELEMENT_NODE) {
Element data = (Element)node;
org.jsoup.nodes.Document xmlDoc = Jsoup.parse(data.getTextContent(), "", Parser.xmlParser());
for (org.jsoup.nodes.Element e : xmlDoc.select("education")) {
System.out.println(e);
}
}
}
預期輸出:在第一次重複我想:SSSSSSSSSS,SSS,大學,Hellio
請幫助
請格式化你的代碼,我們應該看看這個?目前的產出是多少? – Daniel
它不會進入for循環,也不會打印任何東西 – Sthita