您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python如何實現XML解析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
三種方法:一是xml.dom.*模塊,它是W3C DOM API的實現,若需要處理DOM API則該模塊很適合;二是xml.sax.*模塊,它是SAX API的實現,這個模塊犧牲了便捷性來換取速度和內存占用,SAX是一個基于事件的API,這就意味著它可以“在空中”處理龐大數量的的文檔,不用完全加載進內存;三是xml.etree.ElementTree模塊(簡稱 ET),它提供了輕量級的Python式的API,相對于DOM來說ET 快了很多,而且有很多令人愉悅的API可以使用,相對于SAX來說ET的ET.iterparse也提供了 “在空中” 的處理方式,沒有必要加載整個文檔到內存,ET的性能的平均值和SAX差不多,但是API的效率更高一點而且使用起來很方便。
1、DOM(Document Object Model)
一個 DOM 的解析器在解析一個 XML 文檔時,一次性讀取整個文檔,把文檔中所有元素保存在內存中的一個樹結構里,之后你可以利用DOM 提供的不同的函數來讀取或修改文檔的內容和結構,也可以把修改過的內容寫入xml文件。
python中用xml.dom.minidom來解析xml文件。
本文使用的示例文件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>
python實現如下
# !/usr/bin/python # -*- coding: UTF-8 -*- from xml.dom.minidom import parse import xml.dom.minidom # 使用minidom解析器打開 XML 文檔 DOMTree = xml.dom.minidom.parse("movie.xml") #得到元素對象 collection = DOMTree.documentElement if collection.hasAttribute("shelf"): print("Root element : %s" % collection.getAttribute("shelf")) #獲取標簽名 #print(collection.nodeName) # 在集合中獲取所有電影 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) year=movie.getElementsByTagName("year") if len(year)>0: print("Year: %s" % year[0].firstChild.data) #父節點 parentNode #print(year[0].parentNode.nodeName) rating = movie.getElementsByTagName('rating')[0] print("Rating: %s" % rating.childNodes[0].data) description = movie.getElementsByTagName('description')[0] # 顯示標簽對之間的數據 print("Description: %s" % description.childNodes[0].data) #print("Description: %s" % description.firstChild.data)
執行結果:
Root element : New Arrivals *****Movie***** Title: Enemy Behind Type: War, Thriller Format: DVD Year: 2003 Rating: PG Description: Talk about a US-Japan war *****Movie***** Title: Transformers Type: Anime, Science Fiction Format: DVD Year: 1989 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
2、ElementTree(元素樹)
ElementTree就像一個輕量級的DOM,具有方便友好的API。代碼可用性好,速度快,消耗內存少。
在python中,解析xml文件時,會選用ElementTree或者cElementTree,那么兩者有什么不同呢?
1、cElementTree速度上要比ElementTree快,比較cElementTree是用c語音寫的;
2、debug調試的時候,cElementTree是看不到解析的字段內容的,所以不適合用于調試的情況,而ElementTree可以看到解析的內容,方便調試時取值
3、在用到iter,迭代取某個標簽時,cElementTree不能用,因為它沒有這個函數,而ElementTree有這個函數;當然可能還有其他函數的差異
所有平時,我們一般這么用,比較速度快嗎。調試的時候使用ElementTree。遇到某些特別的函數,只能選擇擁有這個函數的使用
try:
import xml.etree.cElementTree as ET
except:
import xml.etree.ElementTree as ET
從Python3.3開始ElementTree模塊會自動尋找可用的C庫來加快速度
import xml.etree.ElementTree as ET import sys import os.path def traverseXml(element): #print (len(element)) if len(element) > 0: for child in element: print("********Movie********") print("Title:",child.get("title")) for childchild in child: print(childchild.tag,":",childchild.text) #traverseXml(child) #else: # print (element.tag, "----", element.attrib) def readXml(xmlFile): try: tree = ET.parse(xmlFile) #print("tree type:", type(tree)) # 獲得根節點 root = tree.getroot() except Exception as e: # 捕獲除與程序退出sys.exit()相關之外的所有異常 print("parse ***.xml fail!") sys.exit() #print("root type:", type(root)) #root.attrib訪問root屬性,root.tag標簽 #print(root.tag, ":", root.attrib) return root if __name__ == "__main__": xmlFilePath = os.path.abspath("movie.xml") root=readXml(xmlFilePath) # # 使用下標訪問 # print(root[0][0].text) # print(root[1][2].text) #根據標簽名查找root下的所有標簽 # movies=root.findall("movie") #遍歷子標簽 # print(len(movies)) # for movie in movies: # type=movie.find("type") # print(type.text) # 遍歷xml文件 traverseXml(root)
3、SAX (simple API for XML )
Python 標準庫包含 SAX 解析器,SAX 用事件驅動模型,通過在解析XML的過程中觸發一個個的事件并調用用戶定義的回調函數來處理XML文件。
SAX是一種基于事件驅動的 API。
利用SAX解析XML文檔牽涉到兩個部分: 解析器和事件處理器。
解析器負責讀取XML文檔,并向事件處理器發送事件,如元素開始跟元素結束事件。
而事件處理器則負責對事件作出響應,對傳遞的XML數據進行處理。
1、對大型文件進行處理;
2、只需要文件的部分內容,或者只需從文件中得到特定信息。
3、想建立自己的對象模型的時候。
在python中使用sax方式處理xml要先引入xml.sax中的parse函數,還有xml.sax.handler中的ContentHandler。
ContentHandler類方法介紹
characters(content)方法
調用時機:
從行開始,遇到標簽之前,存在字符,content 的值為這些字符串。
從一個標簽,遇到下一個標簽之前, 存在字符,content 的值為這些字符串。
從一個標簽,遇到行結束符之前,存在字符,content 的值為這些字符串。
標簽可以是開始標簽,也可以是結束標簽。
startDocument() 方法
文檔啟動的時候調用。
endDocument() 方法
解析器到達文檔結尾時調用。
startElement(name, attrs)方法
遇到XML開始標簽時調用,name是標簽的名字,attrs是標簽的屬性值字典。
endElement(name) 方法
遇到XML結束標簽時調用。
#!/usr/bin/python # -*- coding: UTF-8 -*- import xml.sax class MovieHandler(xml.sax.ContentHandler): def __init__(self): self.CurrentData = "" self.type = "" self.format = "" self.year = "" self.rating = "" self.stars = "" self.description = "" # 元素開始事件處理 def startElement(self, tag, attributes): self.CurrentData = tag if tag == "movie": print("*****Movie*****") title = attributes["title"] print("Title:", title) # 元素結束事件處理 def endElement(self, tag): if self.CurrentData == "type": print("Type:", self.type) elif self.CurrentData == "format": print("Format:", self.format) elif self.CurrentData == "year": print("Year:", self.year) elif self.CurrentData == "rating": print("Rating:", self.rating) elif self.CurrentData == "stars": print("Stars:", self.stars) elif self.CurrentData == "description": print("Description:", self.description) self.CurrentData = "" # 內容事件處理 def characters(self, content): if self.CurrentData == "type": self.type = content elif self.CurrentData == "format": self.format = content elif self.CurrentData == "year": self.year = content elif self.CurrentData == "rating": self.rating = content elif self.CurrentData == "stars": self.stars = content elif self.CurrentData == "description": self.description = content if (__name__ == "__main__"): # 創建一個 XMLReader parser = xml.sax.make_parser() # turn off namepsaces parser.setFeature(xml.sax.handler.feature_namespaces, 0) # 重寫 ContextHandler Handler = MovieHandler() parser.setContentHandler(Handler) parser.parse("movie.xml")
關于“python如何實現XML解析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。