微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用python3.4解析xml文件sax、dom、etree

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

#重载了三个方法
#处理xml,主要就是写自己的事件处理类

from xml.sax import *

class DengHandler(ContentHandler):
    def startDocument(self):
        print("----开始解析xml文档----")
    def endDocument(self):
        print("----xml文档解析完毕----")
    def startElement(self,name,attrs):
        if name == "author":
            print("名字:",attrs['name']," 日期:",attrs["birth"])

parse("deng.xml",DengHandler())
        
<?xml version = "1.0" encoding = "utf-8"?>
	<author name = "dengjingdong" birth = "19920517"></author>
</people>


调用dom模块中的minidom处理xml文件
from xml.dom.minidom import *
#scannode函数打印xml文件的结构
def scannode(doc,level = 0):
    ret = doc.__class__.__name__
    if doc.nodeType == Node.ELEMENT_NODE:
        ret += ",标签:" + doc.tagName
    print(" "*4*level,ret)
    if doc.hasChildNodes:
        for child in doc.childNodes:
            scannode(child,level+1)
#----scannode-----
xin = parse("book.xml")
print(xin)
scannode(xin)
#----scannode-----

x = parse("domtest.xml")
nx = x.getElementsByTagName("author")

print(nx[0].getAttribute("birth"))
print(nx[0].childNodes[0].data)

print(nx[1].getAttribute("birth"))
print(nx[1].childNodes[0].data)
book.xml
<?xml version = "1.0" encoding = "utf-8" ?>
<book>
	<title>the book title</title>
	<author>
		<name>jingdong</name>
		<boy>true</boy>
	</author>
	<chapter number = "1">
		<title> first chapter </title>
		<para>
			I love python.
		</para>
	</chapter>
</book>

domtest.xml
<?xml version = "1.0" encoding = "utf-8" ?>
<people>
	<author name = "dengjingdong" birth = "1990517">dongdong</author>
	<author name = "wushengnan" birth = "19920520">nannan</author>
</people>
import xml.etree.ElementTree as et
x = et.Element("name")
x.text = "dengjingdong"
x.set("boy","true")
sx = et.tostring(x)
print(sx)




以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐