程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> python解析xml文件實例分析

python解析xml文件實例分析

編輯:更多關於編程

       本文實例講述了python解析xml文件的方法。分享給大家供大家參考。具體如下:

      python解析xml非常方便。在dive into python中也有講解。

      如果xml的結構如下:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?xml version="1.0" encoding="utf-8"?> <books> <book> <author>zoer</author> <title>think in java</title> <content>this is a good book</content> </book> <book> <author>naughty</author> <title>gone with the wind</title> <content>this is a good book 2</content> </book> <book> <author>cc</author> <content>this is a good book 3</content> </book> </books>

      第三個book是沒有title標記的。由於不要相信代碼輸入,所以在代碼中要做檢查(比如說檢查這裡的有沒有子標簽)。

      解析代碼如下:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 #coding=utf-8 #parse all books #author: naughty610 #date: 2012-8-16 import xml.dom.minidom dom = xml.dom.minidom.parse('C:/Users/naughty/Desktop/books.xml') root = dom.documentElement #獲取每一個下一層節點 for node in root.childNodes: #這樣取得的是root節點以下一層的節點,而不是root節點以下所有節點 #取所有非text節點 if node.nodeType == node.ELEMENT_NODE: #取author字段 author=node.getElementsByTagName("author") if len(author)>=1: print author[0].childNodes[0].data #取title字段 title=node.getElementsByTagName("title") if len(title)>=1: print title[0].childNodes[0].data #取content字段 content=node.getElementsByTagName("content") if len(content)>=1: print content[0].childNodes[0].data print "........................parting line........................"

      希望本文所述對大家的Python程序設計有所幫助。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved