dom写xml
Posted eustoma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dom写xml相关的知识,希望对你有一定的参考价值。
1.引入包
import xml.dom.minidom
2.writexml方法
writexml(writer, indent, addindent, newl, encoding)
writer是文件对象。
indent是每个tag前填充的字符,如:‘ ‘,则表示每个tag前有两个空格。
addindent是每个子结点的缩近字符,如下面的例子中单引号中我直接用的tab键。
newl是每个tag后填充的字符,如:‘
‘,则表示每个tag后面有一个回车
encoding是生成的XML信息头中的encoding属性值,在输出时minidom并不真正进行编码的处理,如果你保存的文本内容中有汉字,则需要自已进行编码转换。
3.直接上python代码
#xmlTest_write.py # -*- coding: utf-8 -*- import xml.dom.minidom #生成xml文件 def GenerateXml(): impl = xml.dom.minidom.getDOMImplementation() #设置根结点emps dom = impl.createDocument(None, ‘emps‘, None) root = dom.documentElement employee = dom.createElement(‘emp‘) #增加属性 employee.setAttribute("empno","1111") root.appendChild(employee) #设置子结点 #ename nameE=dom.createElement(‘ename‘) nameT=dom.createTextNode(‘杰克‘) nameE.appendChild(nameT) #子节点添加属性 nameE.setAttribute("lastname","克") employee.appendChild(nameE) #age nameE=dom.createElement(‘age‘) nameT=dom.createTextNode(‘33‘) nameE.appendChild(nameT) employee.appendChild(nameE) f= open(‘emplist.xml‘, ‘w‘) #w替换为a,追加 dom.writexml(f, addindent=‘ ‘, newl=‘ ‘) f.close() GenerateXml()
4.运行结果,生成的emplist.xml文件。
<?xml version="1.0" ?> <emps> <emp empno="1111"> <ename lastname="克">杰克</ename> <age>33</age> </emp> </emps>
以上是关于dom写xml的主要内容,如果未能解决你的问题,请参考以下文章