DOM4J解析XML文档

需要的jar包:dom4j-1.6.1.jar

package com.zhang.xml.dom4j;

import java.io.File;
import java.util.Iterator;
import java.util.List;

import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

public class Dom4JParser {

	public static void main(String[] args) throws DocumentException {
		
		SAXReader reader = new SAXReader();
		Document document = reader.read(new File("books.xml"));

		Element bookStore = document.getRootElement();

		Iterator it = bookStore.elementIterator();
		while (it.hasNext()) {
			System.out.println("=====开始遍历某一本书=====");
			Element book = (Element) it.next();

			List<Attribute> bookAttrs = book.attributes();
			for (Attribute attr : bookAttrs) {
				System.out.println("属性名:" + attr.getName() + "--属性值:"
						+ attr.getValue());
			}
			Iterator itt = book.elementIterator();
			while (itt.hasNext()) {
				Element bookChild = (Element) itt.next();
				System.out.println("节点名:" + bookChild.getName() + "--节点值:"
						+ bookChild.getStringValue());
			}
			System.out.println("=====结束遍历某一本书=====");
		}

	}

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章