dom4j通过ElementIterator对xml节点进行遍历_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > dom4j通过ElementIterator对xml节点进行遍历

dom4j通过ElementIterator对xml节点进行遍历

 2013/11/10 0:55:59  alleni123  程序员俱乐部  我要评论(0)
  • 摘要:xml文件:<students><student><name>a</name><age>19</age><course>math</cource><course>english</cource></student></students>这里先获取student节点。Elementstu
  • 标签:遍历 XML
xml文件:
class="xml" name="code"><students>
<student>

<name>a</name>
<age>19</age>
<course>math</cource>
<course>english</cource>

</student>
</students>



这里先获取student节点。

Element stu;

然后获取这个节点的子节点course的iterator对象
Iterator it=stu.elementIterator("course");
while(itr.hasNext()){
			Element node=(Element) itr.next();
                        System.out.println(node.getName());
			System.out.println(node.getText());
			
		}


这里便会输出:
course
math
course
english


发表评论
用户名: 匿名