Python使用sax模块解析XML文件示例
作者:蔷薇Nina 时间:2021-11-28 15:31:39
本文实例讲述了Python使用sax模块解析XML文件。分享给大家供大家参考,具体如下:
XML样例:
<?xml version="1.0"?>
<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>
SAX解析代码展示:
from xml import sax
class MovieHandler(sax.ContentHandler):
def __init__(self):
# 初始化数据,并增加一个当前数据
self.CurrentData = ""
self.type = ""
self.format = ""
self.year = ""
self.rating = ""
self.stars = ""
self.description = ""
# 文档启动的时候调用
def startDocument(self):
print('XML开始解析中...')
# 元素开始事件处理
def startElement(self, name, attrs):
self.CurrentData=name
if self.CurrentData=='movie':
print('*********movie*********')
title=attrs['title']
print('Title:{0}'.format(title))
# 内容事件处理
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
# 元素结束事件处理
def endElement(self, name):
if self.CurrentData=='type':
print('Type:{0}'.format(self.type))
elif self.CurrentData=='format':
print('Format:{0}'.format(self.format))
elif self.CurrentData=='year':
print('Year:{0}'.format(self.year))
elif self.CurrentData == 'rating':
print('Rating:{0}'.format(self.rating))
elif self.CurrentData == 'stars':
print('Stars:{0}'.format(self.stars))
elif self.CurrentData == 'description':
print('Description:{0}'.format(self.description))
self.CurrentData = ""
# 文档结束的时候调用
def endDocument(self):
print('XML文档解析结束!')
if __name__=='__main__':
handler=MovieHandler()
parser = sax.make_parser()
# parser.setFeature(sax.handler.feature_namespaces, 0)
parser.setContentHandler(handler)
parser.parse("sax_test.xml")
PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
在线格式化XML/在线压缩XML:
http://tools.jb51.net/code/xmlformat
XML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compress
XML代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat
希望本文所述对大家Python程序设计有所帮助。
来源:https://www.cnblogs.com/wcwnina/p/7233386.html
标签:Python,sax,XML
0
投稿
猜你喜欢
重构Python代码的六个实例
2023-08-07 02:10:14
php获取referer防非法访问
2023-08-20 11:30:58
go语言中函数与方法介绍
2024-04-23 09:34:13
MySQL单表ibd文件恢复方法详解
2024-01-15 19:39:21
SQL Server数据库优化经验总结
2009-03-16 14:22:00
Python基础中所出现的异常报错总结
2023-07-14 05:33:47
JavaScript实现仿淘宝商品购买数量的增减效果
2024-06-07 15:26:09
SQL 将一列拆分成多列的三种方法
2024-01-23 15:30:18
下一代web:浏览器存储支持
2008-06-11 11:50:00
Python获取基金网站网页内容、使用BeautifulSoup库分析html操作示例
2022-10-04 00:34:40
python矩阵转换为一维数组的实例
2023-09-13 18:34:10
python 读取数据库并绘图的实例
2024-01-27 10:43:33
CSS在Internet Explorer 6, 7 和8中的差别
2009-10-26 18:14:00
ASP 验证码的程序及原理
2010-04-24 15:56:00
tensorflow图像裁剪进行数据增强操作
2023-06-23 14:33:20
python pickle 和 shelve模块的用法
2023-11-07 22:41:11
微信小程序与axios组成网络层封装过程详解
2024-04-19 10:01:38
python使用folium库绘制地图点击框
2023-03-08 00:50:04
Python爬虫爬取电影票房数据及图表展示操作示例
2021-07-18 08:34:32
基于Python实现语音合成小工具
2023-01-13 15:25:38