dom是一種強大的解析工具,適用於小型文檔
為什麼這麼說呢?因為它會把整篇xml文檔裝載進記憶體中,形成一顆文檔物件樹
總之聽起來怪嚇人的,不過使用它來讀取點小東西相對Sax而言還是挺方便的
至於它的增刪操作等,我是不打算寫了,在我看教程的時候我就差點被那個程式碼給醜到吐了
也因為如此,才有後來那些jdom和dom4j等工具的存在…
不多說,直接上程式碼
Dom解析範例
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class Demo {
public static void main(String[] args) throws Exception {
//建立解析器工廠實例,並產生解析器
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
//建立需要解析的文檔對象
File f = new File("books.xml");
//解析文檔,並傳回一個Document對象,此時xml文檔已載入記憶體中
//好吧,讓解析來得更猛烈些吧,其餘的事就是取得資料了
Document doc = builder.parse(f);
//取得文檔根元素
//你問我為什麼這麼做?因為文檔物件本身就是樹狀結構,這裡就是樹根
//當然,你也可以直接找到元素集合,省略此步驟
Element root = doc.getDocumentElement();
//上面找到了根節點,這裡開始取得根節點下的元素集合
NodeList list = root.getElementsByTagName("book");
for (int i = 0; i < list.getLength(); i++) {
//透過item()方法找到集合中的節點,並向下轉型為Element對象
Element n = (Element) list.item(i);
//取得物件中的屬性map,用for迴圈擷取並列印
NamedNodeMap node = n.getAttributes();
for (int x = 0; x < node.getLength(); x++) {
Node nn = node.item(x);
System.out.println(nn.getNodeName() + ": " + nn.getNodeValue());
}
//印出元素內容,程式碼很糾結,差不多是個固定格式
System.out.println("title: " +n.getElementsByTagName("title").item(0).getFirstChild().getNodeValue());
System.out.println("author: " + n.getElementsByTagName("author").item(0).getFirstChild().getNodeValue());
System.out.println();
}
}
}
輸出結果: