XML是一種便攜式的開源語言,允許程式員開發可由其他應用程式讀取的應用程式,而不管作業系統和/或開發語言是什麼。
可延伸標示語言(XML)是一種非常像HTML或SGML的標示語言。 這是由全球資訊網聯盟推薦的,可以作為開放標準。
XML對於儲存小到中等數量的資料非常有用,而不需要使用SQL。
Python標準庫提供了一組極少使用但有用的介面來處理XML。兩個最基本和最廣泛使用在XML資料的API是SAX和DOM介面。
簡單XML API(SAX) - 在這裡,註冊感興趣的事件回撥,然後讓解析器繼續執行文件。 當文件較大或存在記憶體限制時,此功能非常有用,它會從檔案讀取檔案時解析檔案,並且整個檔案不會儲存在記憶體中。
文件物件模型(DOM)API - 這是一個全球資訊網聯盟的推薦,它將整個檔案讀入儲存器並以分層(基於樹)的形式儲存,以表示XML文件的所有功能。
當處理大檔案時,SAX顯然無法與DOM一樣快地處理資訊。 另一方面,使用DOM專門可以真正地佔用資源,特別是如果要加許多檔案使用的時候。
SAX是唯讀的,而DOM允許更改XML檔案。由於這兩種不同的API相輔相成,在大型專案中一般根據需要使用它們。
對於我們所有的XML程式碼範例,使用一個簡單的XML檔案:movies.xml
作為輸入 -
<collection shelf = "New Arrivals">
<movie title = "Enemy Behind">
<type>War, Thriller</type>
<format>DVD</format>
<year>2013</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>
SAX是事件驅動的XML解析的標準介面。 使用SAX解析XML通常需要通過子類化xml.sax.ContentHandler
來建立自己的ContentHandler
。ContentHandler
處理XML樣式/風格的特定標籤和屬性。 ContentHandler
物件提供了處理各種解析事件的方法。它擁有的解析器在解析XML檔案時呼叫ContentHandler
方法。
在XML檔案的開頭和結尾分別呼叫:startDocument
和endDocument
方法。 characters(text)
方法通過引數text
傳遞XML檔案的字元資料。
ContentHandler
在每個元素的開頭和結尾被呼叫。如果解析器不在名稱空間模式下,則呼叫startElement(tag,attributes)
和endElement(tag)
方法; 否則,呼叫相應的方法startElementNS
和endElementNS
方法。 這裡,tag
是元素標籤,屬性是Attributes
物件。
以下是繼續前面了解的其他重要方法 -
make_parser()方法
以下方法建立一個新的解析器物件並返回它。建立的解析器物件將是系統查詢的第一個解析器型別。
xml.sax.make_parser( [parser_list] )
以下是引數的詳細資訊 -
make_parser
方法。parse()方法
以下方法建立一個SAX解析器並使用它來解析文件。
xml.sax.parse( xmlfile, contenthandler[, errorhandler])
以下是引數的詳細資訊 -
ContentHandler
物件。errorhandler
必須是SAX ErrorHandlerparseString方法
還有一種方法來建立SAX解析器並解析指定的XML字串。
xml.sax.parseString(xmlstring, contenthandler[, errorhandler])
以下是引數的詳細資訊 -
ContentHandler
物件。errorhandler
必須是SAX ErrorHandler
物件。範例
#!/usr/bin/python3
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 = ""
# Call when an element starts
def startElement(self, tag, attributes):
self.CurrentData = tag
if tag == "movie":
print ("*****Movie*****")
title = attributes["title"]
print ("Title:", title)
# Call when an elements ends
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 = ""
# Call when a character is read
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__"):
# create an XMLReader
parser = xml.sax.make_parser()
# turn off namepsaces
parser.setFeature(xml.sax.handler.feature_namespaces, 0)
# override the default ContextHandler
Handler = MovieHandler()
parser.setContentHandler( Handler )
parser.parse("movies.xml")
這將產生以下結果 -
*****Movie*****
Title: Enemy Behind
Type: War, Thriller
Format: DVD
Year: 2003
Rating: PG
Stars: 10
Description: Talk about a US-Japan war
*****Movie*****
Title: Transformers
Type: Anime, Science Fiction
Format: DVD
Year: 1989
Rating: R
Stars: 8
Description: A schientific fiction
*****Movie*****
Title: Trigun
Type: Anime, Action
Format: DVD
Rating: PG
Stars: 10
Description: Vash the Stampede!
*****Movie*****
Title: Ishtar
Type: Comedy
Format: VHS
Rating: PG
Stars: 2
Description: Viewable boredom
有關SAX API文件的完整詳細資訊,請參閱標準Python SAX API。
文件物件模型(「DOM」)是來自全球資訊網聯盟(W3C)的跨語言API,用於存取和修改XML文件。
DOM對於隨機存取應用非常有用。SAX只允許您一次檢視文件的一部分。如果想要檢視一個SAX元素,則無法存取另一個。
以下是快速載入XML文件並使用xml.dom
模組建立minidom物件的最簡單方法。 minidom物件提供了一個簡單的解析器方法,可以從XML檔案快速建立一個DOM樹。
範例呼叫minidom
物件的parse(file [,parser])
函式來解析由檔案指定為DOM樹物件的XML檔案。
範例
#!/usr/bin/python3
from xml.dom.minidom import parse
import xml.dom.minidom
# Open XML document using minidom parser
DOMTree = xml.dom.minidom.parse("movies.xml")
collection = DOMTree.documentElement
if collection.hasAttribute("shelf"):
print ("Root element : %s" % collection.getAttribute("shelf"))
# Get all the movies in the collection
movies = collection.getElementsByTagName("movie")
# Print detail of each 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
有關DOM API文件的完整詳細資訊,請參閱標準Python DOM API。