您好,登錄后才能下訂單哦!
小編給大家分享一下python讀xml的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
XML是可擴展標記語言(Extensible Markup Language)的縮寫,其中標記是關鍵部分。用戶可以創建內容,然后使用限定標記標記它,從而使每個單詞、短語或塊成為可識別、可分類的信息。
標記語言從早起的私有公司和政府制定形式逐漸演變成標準通用標記語言(Standard Generalized Markup Language,SGML)、超文本標記語言(Hypertext Markup Language,HTML),并且最終演變成XML。XML有以下幾個特點:
·XML的設計宗旨是傳輸數據,而非顯示數據
·XML的標簽沒有被預定義,用戶需要自行定義標簽
·XML被設計為具有自我描述性
·XML是W3C的推薦標準
Python對XML文件的解析
常見的XML編程接口有DOM和SAX,這兩種接口處理XML文件的方式不同,使用場合也不同。DOM是由W3C官方提出的標準,它會把整個XML文件讀入內存,并將該文件解析成樹,我們可以通過訪問樹的節點的方式訪問XML中的標簽,但是這種方法占用內存大,解析慢,如果讀入文件過大,盡量避免使用這種方法。SAX是事件驅動的,通過在解析XML的過程中觸發一個個的事件并調用用戶自定義的回調函數來處理XML文件,速度比較快,占用內存少,但是需要用戶實現回調函數,因此Python標準庫的官方文檔中這樣介紹SAX:SAX每次只允許你查看文檔的一小部分,你無法通過當前獲取的元素訪問其他元素。Python中提供了很多包支持XML文件的解析,如xml.dom,xml.sax,xml.dom.minidom和xml.etree.ElementTree等。
xml.dom.minidom包
xml.dom.minidom是DOM API的極簡化實現,比完整版的DOM要簡單的多,而且這個包也小得多,下面以movie.xml文件為例進行操作。
<collection shelf="New Arrivals"> <movie title="Enemy Behind"> <type>War, Thriller</type> <format>DVD</format> <year>2003</year> <rating>PG</rating> <stars>10</stars> <description>Talk about a US-Japan war</description> </movie> <movie title="Transformers"> <type>Anime, Science Fiction</type> <format>DVD</format> <year>1989</year> <rating>R</rating> <stars>8</stars> <description>A schientific fiction</description> </movie> <movie title="Trigun"> <type>Anime, Action</type> <format>DVD</format> <episodes>4</episodes> <rating>PG</rating> <stars>10</stars> <description>Vash the Stampede!</description> </movie> <movie title="Ishtar"> <type>Comedy</type> <format>VHS</format> <rating>PG</rating> <stars>2</stars> <description>Viewable boredom</description> </movie> </collection>
然后我們調用xml.dom.minidom.parse方法讀入xml文件并解析成DOM樹
#!/usr/bin/python # -*- coding: UTF-8 -*- from xml.dom.minidom import parse import xml.dom.minidom # 使用minidom解析器打開 XML 文檔 DOMTree = xml.dom.minidom.parse("movies.xml") collection = DOMTree.documentElement if collection.hasAttribute("shelf"): print "Root element : %s" % collection.getAttribute("shelf") # 在集合中獲取所有電影 movies = collection.getElementsByTagName("movie") # 打印每部電影的詳細信息 for movie in movies: print "*****Movie*****" if movie.hasAttribute("title"): print "Title: %s" % movie.getAttribute("title") type = movie.getElementsByTagName('type')[0] print "Type: %s" % type.childNodes[0].data format = movie.getElementsByTagName('format')[0] print "Format: %s" % format.childNodes[0].data rating = movie.getElementsByTagName('rating')[0] print "Rating: %s" % rating.childNodes[0].data description = movie.getElementsByTagName('description')[0] print "Description: %s" % description.childNodes[0].data
以上程序執行結果如下:
Root element : New Arrivals *****Movie***** Title: Enemy Behind Type: War, Thriller Format: DVD Rating: PG Description: Talk about a US-Japan war *****Movie***** Title: Transformers Type: Anime, Science Fiction Format: DVD Rating: R Description: A schientific fiction *****Movie***** Title: Trigun Type: Anime, Action Format: DVD Rating: PG Description: Vash the Stampede! *****Movie***** Title: Ishtar Type: Comedy Format: VHS Rating: PG Description: Viewable boredom
以上是python讀xml的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。