JAVA 讀取xml檔案

shilei22發表於2010-12-23
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;


public class ReadXml {


public ReadXml() {
//(1)得到DOM解析器的工廠例項
DocumentBuilderFactory domfac=DocumentBuilderFactory.newInstance();
//得到javax.xml.parsers.DocumentBuilderFactory;類的例項就是我們要的解析器工廠
try {
//(2)從DOM工廠獲得DOM解析器
DocumentBuilder dombuilder=domfac.newDocumentBuilder();
//通過javax.xml.parsers.DocumentBuilderFactory例項的靜態方法newDocumentBuilder()得到DOM解析器
//(3)把要解析的XML文件轉化為輸入流,以便DOM解析器解析它
InputStream is=new FileInputStream("D:\\apple.xml"); //xml 的路徑
//(4)解析XML文件的輸入流,得到一個Document
Document doc=dombuilder.parse(is);
//由XML文件的輸入流得到一個org.w3c.dom.Document物件,以後的處理都是對Document物件進行的
//(5)得到XML文件的根節點
Element root=doc.getDocumentElement();
//在DOM中只有根節點是一個org.w3c.dom.Element物件。
//(6)得到節點的子節點
NodeList books=root.getChildNodes();

if(books!=null) {
for(int i=0;i<books.getLength();i++) {
Node book=books.item(i);
// if(book.getNodeType()==Node.ELEMENT_NODE) {
//(7)取得節點的屬性值
// String email=book.getAttributes().getNamedItem("email").getNodeValue();
// System.out.println(email);
//注意,節點的屬性也是它的子節點。它的節點型別也是Node.ELEMENT_NODE
//(8)輪循子節點
for(Node node=book.getFirstChild();node!=null;node=node.getNextSibling()) {
if(node.getNodeType()==Node.ELEMENT_NODE) {
if(node.getNodeName().equals("name")) {
String name=node.getNodeValue();
String name1=node.getFirstChild().getNodeValue();
System.out.println("這個值是空的:"+name);
System.out.println("xml裡面的name標籤值:"+name1);
}
if(node.getNodeName().equals("price")) {
String price=node.getFirstChild().getNodeValue();
System.out.println("xml裡面的price標籤值:"+price);
}
// }
}

//
}
}//(6)這是用一個org.w3c.dom.NodeList介面來存放它所有子節點的,還有一種輪循子節點的方法,後面有介紹
}
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

public static void main(String[] args) {

new ReadXml();
}
}

<?xml version="1.0" encoding="UTF-8"?>
<books>
<book >
<name>macbookpro 13</name>
<price>8700</price>
</book>
<book >
<name>iphone4</name>
<price>5000</price>
</book>
</books>


來自http://www.liuzm.com/article/java/9612.htm

相關文章