python解析xml:xml.etree.ElementTree似乎存在bug?
我想把如下的xml中的AtBegin值改为1,<Type>LocalFile</Type><Duration></Duration><AtBegin>0</AtBegin...
我想把如下的xml中的AtBegin值改为1,
<Type>LocalFile</Type>
<Duration></Duration>
<AtBegin>0</AtBegin>
<URI></URI>
python代码如下:
for xml_AtBegin in root.iter('MaxBitRate'):
new_AtBegin = 1
xml_AtBegin.text = str(new_AtBegin )
tree.write('config.xml')
结果AtBegin的值是修改好了,
但是发现节点为空的地方被强制删掉了一些东西:
<Duration></Duration>变成了<Duration />
<URI></URI>变成了<URI />
这个该怎么办呢? 展开
<Type>LocalFile</Type>
<Duration></Duration>
<AtBegin>0</AtBegin>
<URI></URI>
python代码如下:
for xml_AtBegin in root.iter('MaxBitRate'):
new_AtBegin = 1
xml_AtBegin.text = str(new_AtBegin )
tree.write('config.xml')
结果AtBegin的值是修改好了,
但是发现节点为空的地方被强制删掉了一些东西:
<Duration></Duration>变成了<Duration />
<URI></URI>变成了<URI />
这个该怎么办呢? 展开
1个回答
2016-06-13
展开全部
<?xml version = "1.0" encoding = "utf-8"?>
<root>
<body name="lyc">
<age>110</age>
</body>
<body name = "l" age = "10">
</body>
</root>
<root>
<body name="lyc">
<age>110</age>
</body>
<body name = "l" age = "10">
</body>
</root>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询