在java中使用dom解析xml的樣本分析

來源:互聯網
上載者:User

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();
}
}

}

輸出結果:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.