0

我有一个这样开头的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<Recipe xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

我需要读进去,修改它,然后把它写回去。这是一个代码片段:

from xml.etree import ElementTree
with open('base.xml', 'rt') as f:
    tree = ElementTree.parse(f)

recipe = tree.find('')
t = recipe.find('Targets_Params/Target_Table/Target_Name')
t.text = "new Value"

output_file = open('new.xml', 'w' )
output_file.write(ElementTree.tostring(recipe))
output_file.close()

我的问题是,当我写出文件时,我根本没有得到第一行,而第二行只有:

<Recipe>

如何在保留原始结构的同时读取、修改和写出文件?

4

0 回答 0