当前位置 主页 > 网站技术 > 代码类 >

    python实现XML解析的方法解析

    栏目:代码类 时间:2019-11-16 15:08

    这篇文章主要介绍了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)