python對XML的解析

來源:互聯網
上載者:User

python有三種方法解析XML,SAX,DOM,以及ElementTree
###1.SAX (simple API for XML )
       pyhton 標準庫包含SAX解析器,SAX是一種典型的極為快速的工具,在解析XML時,不會佔用大量記憶體。
但是這是基於回調機制的,因此在某些資料中,它會調用某些方法進行傳遞。這意味著必須為資料指定控制代碼,
以維持自己的狀態,這是非常困難的。

###2.DOM(Document Object Model)
       與SAX比較,DOM典型的缺點是比較慢,消耗更多的記憶體,因為DOM會將整個XML數讀入記憶體中,並為樹
中的第一個節點建立一個對象。使用DOM的好處是你不需要對狀態進行追蹤,因為每一個節點都知道誰是它的
父節點,誰是子節點。但是DOM用起來有些麻煩。

###3.ElementTree(元素樹)
     ElementTree就像一個輕量級的DOM,具有方便友好的API。代碼可用性好,速度快,消耗記憶體少,這裡主要
介紹ElementTree。


下面是一個轉載的例子:

test.xml如下:

 

[html] view plaincopy

  1. <span style="font-size:13px;"><?xml version="1.0" encoding="utf-8"?>  
  2. <root>  
  3.  <person age="18">  
  4.     <name>hzj</name>  
  5.     <sex>man</sex>  
  6.  </person>  
  7.  <person age="19" des="hello">  
  8.     <name>kiki</name>  
  9.     <sex>female</sex>  
  10.  </person>  
  11. </root></span>  

 

1.載入xml檔案

    載入XML檔案共有2種方法,一是載入指定字串,二是載入指定檔案

2.擷取element的方法

  a) 通過getiterator

  b) 過 getchildren

  c) find方法

  d) findall方法

[python] view plaincopy

  1. <span style="font-size:13px;">#-*- coding:utf-8 -*-  
  2. from xml.etree import ElementTree  
  3. def print_node(node):  
  4.     '''''列印結點基本資料'''  
  5.     print "=============================================="  
  6.     print "node.attrib:%s" % node.attrib  
  7.     if node.attrib.has_key("age") > 0 :  
  8.         print "node.attrib['age']:%s" % node.attrib['age']  
  9.     print "node.tag:%s" % node.tag  
  10.     print "node.text:%s" % node.text  
  11. def read_xml(text):  
  12.     '''''讀xml檔案'''  
  13.     # 載入XML檔案(2種方法,一是載入指定字串,二是載入指定檔案)      
  14.     # root = ElementTree.parse(r"D:/test.xml")  
  15.     root = ElementTree.fromstring(text)  
  16.       
  17.     # 擷取element的方法  
  18.     # 1 通過getiterator   
  19.     lst_node = root.getiterator("person")  
  20.     for node in lst_node:  
  21.         print_node(node)  
  22.           
  23.     # 2通過 getchildren  
  24.     lst_node_child = lst_node[0].getchildren()[0]  
  25.     print_node(lst_node_child)  
  26.           
  27.     # 3 .find方法  
  28.     node_find = root.find('person')  
  29.     print_node(node_find)  
  30.       
  31.     #4. findall方法  
  32.     node_findall = root.findall("person/name")[1]  
  33.     print_node(node_findall)  
  34.       
  35. if __name__ == '__main__':  
  36.      read_xml(open("test.xml").read())  
  37.  </span>  


想想為什嗎?不明白,請看下面

 

[python] view plaincopy

  1. #encoding=utf-8  
  2. from xml.etree import ElementTree as ET  
  3. #要找出所有人的年齡  
  4. per=ET.parse('test.xml')  
  5. p=per.findall('/person')  
  6. for x in p:  
  7.     print x.attrib  
  8. print  
  9. for oneper in p:  #找出person節點  
  10.     for child in oneper.getchildren(): #找出person節點的子節點  
  11.         print child.tag,':',child.text  
  12.   
  13.     print 'age:',oneper.get('age')  
  14.     print '############'  

結果如下:

[python] view plaincopy

  1. {'age': '18'}  
  2. {'age': '19', 'des': 'hello'}  
  3.   
  4. name : hzj  
  5. sex : man  
  6. age: 18  
  7. ############  
  8. name : kiki  
  9. sex : female  
  10. age: 19  
  11. ############ 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.