dom是個功能強大的解析工具,適用於小文檔
為什麼這麼說呢?因為它會把整篇xml文檔裝載進記憶體中,形成一顆文檔對象樹
總之聽起來怪嚇人的,不過使用它來讀取點小東西相對Sax而言還是挺方便的
至於它的增刪操作等,我是不打算寫了,在我看教程的時候我就差點被那代碼給醜到吐了
也正因為如此,才有後來那些jdom和dom4j等工具的存在……
不多說,直接上代碼
Dom解析樣本
複製代碼 代碼如下:import java.io.File;
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();
}
}
}
輸出結果: