0
有人可以告訴我如何閱讀這種XML文件來獲取子元素名稱?Java XML讀取問題:讀取不同的子標籤
<CEB>
<MOREVALUES></MOREVALUES>
</CEB>
<DILOG>
<MOREVALUES></MOREVALUES>
</DILOG>
<MOBITLE>
<MOREVALUES></MOREVALUES>
</MOBITLE>
e.g我想讀<CTLBILL>
標籤內的所有子標籤。 <CEB>
,<DILOG>
和<MOBITLE>
。
這不起作用:
public static void getTags() {
try {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new File("C:\\ctlbill.xml"));
NodeList nodeLst = doc.getChildNodes();
for (int s = 0; s < nodeLst.getLength(); s++)
{
}
} catch (Exception e) {
e.printStackTrace();
}
}
良好的格式是你的朋友Aruna .. – 2011-05-26 05:32:16
謝謝Sener Gonul ...感謝您的幫助... – 2011-05-26 05:35:59
什麼不工作? nodeLst爲空,或者nodeLst.item(i)沒有返回你期望的結果? – 2011-05-26 05:37:49