百科狗-知识改变命运!
--

使用python自带的xml.dom创建和解析xml

梵高1年前 (2023-11-21)阅读数 12#技术干货
文章标签文档

python中的xml.dom模块使用的就是传统的dom解析api和方法。所以也就不写什么了,主要就是练习敲敲代码,继续熟悉python。本文通过xml.dom.minidom创建一个xml文档,然后再解析出来,用以熟悉相关接口方法的使用。

创建一个xml文档:

'''

Createdon2012-1-10

Createaxmldocument

@author:xiaojay

'''

fromxml.domimportminidom

doc=minidom.Document()

doc.appendChild(doc.createComment("Thisisasimplexml."))

booklist=doc.createElement("booklist")

doc.appendChild(booklist)

defaddBook(newbook):

book=doc.createElement("book")

book.setAttribute("id",newbook["id"])

title=doc.createElement("title")

title.appendChild(doc.createTextNode(newbook["title"]))

book.appendChild(title)

author=doc.createElement("author")

name=doc.createElement("name")

firstname=doc.createElement("firstname")

firstname.appendChild(doc.createTextNode(newbook["firstname"]))

lastname=doc.createElement("lastname")

lastname.appendChild(doc.createTextNode(newbook["lastname"]))

name.appendChild(firstname)

name.appendChild(lastname)

author.appendChild(name)

book.appendChild(author)

pubdate=doc.createElement("pubdate")

使用python自带的xml.dom创建和解析xml

pubdate.appendChild(doc.createTextNode(newbook["pubdate"]))

book.appendChild(pubdate)

booklist.appendChild(book)

addBook({"id":"1001","title":"Anapple","firstname":"Peter","lastname":"Zhang","pubdate":"2012-1-12"})

addBook({"id":"1002","title":"Love","firstname":"Mike","lastname":"Li","pubdate":"2012-1-10"})

addBook({"id":"1003","title":"Steve.Jobs","firstname":"Tom","lastname":"Wang","pubdate":"2012-1-19"})

addBook({"id":"1004","title":"HarryPotter","firstname":"Peter","lastname":"Chen","pubdate":"2012-11-11"})

f=file("book.xml","w")

doc.writexml(f)

f.close()

通过doc.toprettyxml(indent,newl,encoding)方法可以优雅显示xml文档,但是要避免直接写入文本,否则会给解析带来麻烦,尽量使用自带的writexml方法。

生成的文档内容:

Peter

Zhang

2012-1-12

.................

解析该xml文档:

'''

Createdon2012-1-10

Scanaxmldoc

@author:xiaojay

'''

fromxml.domimportminidom,Node

classbookscanner:

def__init__(self,doc):

forchildindoc.childNodes:

ifchild.nodeType==Node.ELEMENT_NODE\

andchild.tagName=="book":

bookid=child.getAttribute("id")

print"*"*20

print"Bookid:",bookid

self.handle_book(child)

defhandle_book(self,node):

forchildinnode.childNodes:

ifchild.nodeType==Node.ELEMENT_NODE:

ifchild.tagName=="title":

print"Title:",self.getText(child.firstChild)

ifchild.tagName=="author":

self.handle_author(child)

ifchild.tagName=="pubdate":

print"Pubdate:",self.getText(child.firstChild)

defgetText(self,node):

ifnode.nodeType==Node.TEXT_NODE:

returnnode.nodeValue

else:return""

defhandle_author(self,node):

author=node.firstChild

forchildinauthor.childNodes:

ifchild.nodeType==Node.ELEMENT_NODE:

ifchild.tagName=="firstname":

print"Firstname:",self.getText(child.firstChild)

ifchild.tagName=="lastname":

print"Lastname:",self.getText(child.firstChild)

doc=minidom.parse("book.xml")

forchildindoc.childNodes:

ifchild.nodeType==Node.COMMENT_NODE:

print"Conment:",child.nodeValue

ifchild.nodeType==Node.ELEMENT_NODE:

bookscanner(child)

以上内容为大家介绍了使用python自带的xml.dom创建和解析xml,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:开发教育。

鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com

免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)

图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)