使用Python3和ElementTree生成.SVG文件时出现问题。
from xml.etree import ElementTree as et
doc = et.Element('svg', width='480', height='360', version='1.1', xmlns='http://www.w3.org/2000/svg')
#Doing things with et and doc
f = open('sample.svg', 'w')
f.write('<?xml version=\"1.0\" standalone=\"no\"?>\n')
f.write('<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n')
f.write('\"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n')
f.write(et.tostring(doc))
f.close()
Function et.tostring(doc)生成TypeError&#34; write()参数必须是str,而不是bytes&#34;。我不明白这种行为,&#34; et&#34;应该将ElementTree-Element转换为字符串?它适用于python2,但不适用于python3。我做错了什么?
答案 0 :(得分:12)
事实证明,tostring
,尽管名称,但确实会返回类型为bytes
的对象。
发生了奇怪的事情。无论如何,这是证据:
>>> from xml.etree.ElementTree import ElementTree, tostring
>>> import xml.etree.ElementTree as ET
>>> element = ET.fromstring("<a></a>")
>>> type(tostring(element))
<class 'bytes'>
傻,不是吗?
幸运的是,你可以这样做:
>>> type(tostring(element, encoding="unicode"))
<class 'str'>
是的,我们都认为字节的荒谬性和那个名为ascii
的古老,四十多岁和过时的编码已经死了。
并没有让我开始说他们打电话给"unicode"
一个编码 !!!!!!!!!!!
答案 1 :(得分:3)
尝试:
f.write(et.tostring(doc).decode(encoding))
示例:
f.write(et.tostring(doc).decode("utf-8"))
答案 2 :(得分:2)
在编写xml文件时指定字符串的编码。
与decode(UTF-8)
一样write()
。
示例:file.write(etree.tostring(doc).decode(UTF-8))
答案 3 :(得分:2)
输出文件应为二进制模式。
f = open('sample.svg', 'wb')
答案 4 :(得分:0)
对我来说,最简单的方法是先创建一些模板xml(仅定义根目录),然后解析它...
docXml = ET.parse('template.xml')
root = docXml.getroot()
然后在xml中做我想做的事情,他们打印出来...
docXml.write("output.xml", encoding="utf-8")