如何用DOM4J讀取XML文件中的元素值
3 回答

慕姐4208626
TA貢獻1852條經驗 獲得超7個贊
dom4j中,使用Element.attributes方法可以獲取到節點的屬性,而使用elements則可以獲取相應的子節點
比如:
Element root = doc.getRootElement();
List attrList = root.attributes();
for (int i = 0; i < attrList.size(); i++) {
//屬性的取得
Attribute item = (Attribute)attrList.get(i);
System.out.println(item.getName() + "=" + item.getValue());
}
List childList = root.elements();
for (int i = 0; i < childList.size(); i++) {
//子節點的操作
Element it = (Element) childList.get(i);
//對子節點進行其它操作...
}
- 3 回答
- 0 關注
- 1614 瀏覽
添加回答
舉報
0/150
提交
取消