码迷,mamicode.com
首页 > 其他好文 > 详细

xml解析

时间:2017-03-08 16:32:36      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:xml   python   

<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>



#######################################################################################

__author__ = ‘sea‘
#coding: utf-8
from xml.dom.minidom import parse
import xml.dom.minidom

#加载读取xml文件
DOMTree=xml.dom.minidom.parse("XTest.xml")
#读取xml对象
collection=DOMTree.documentElement

‘‘‘
if collection.hasAttribute("shelf"):
    print("Root element: %s " % collection.getAttribute("shelf"))
‘‘‘

#获取xml节点集合
movies=collection.getElementsByTagName("movie")

for movie in movies:
    #获取xml节点属性值
    if movie.hasAttribute("title"):
        print("Title: %s " % movie.getAttribute("title"))

    type=movie.getElementsByTagName(‘type‘)[0]
    #返回子节点列表
    print(type.childNodes[0].nodeValue)
    #print("Type : %s" % type.childNodes[0].data)


xml解析

标签:xml   python   

原文地址:http://liangey.blog.51cto.com/9097868/1904321

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!