python讀取xml文件的方法有多種,主要有以下幾種:
import xml.etree.ElementTree as ET
tree = ET.parse('file.xml')
root = tree.getroot()
# 遍歷所有的子節點
for child in root:
print(child.tag, child.attrib)
# 獲取特定子節點的值
value = root.find('child_node').text
# 修改特定子節點的值
root.find('child_node').text = 'new_value'
# 保存修改后的XML文件
tree.write('new_file.xml')
from lxml import etree
tree = etree.parse('file.xml')
root = tree.getroot()
# 遍歷所有的子節點
for child in root:
print(child.tag, child.attrib)
# 獲取特定子節點的值
value = root.find('child_node').text
# 修改特定子節點的值
root.find('child_node').text = 'new_value'
# 保存修改后的XML文件
tree.write('new_file.xml', pretty_print=True, encoding='utf-8')
from xml.dom import minidom
dom = minidom.parse('file.xml')
root = dom.documentElement
# 遍歷所有的子節點
for child in root.childNodes:
if child.nodeType == child.ELEMENT_NODE:
print(child.tagName, child.attributes.items())
# 獲取特定子節點的值
value = root.getElementsByTagName('child_node')[0].firstChild.nodeValue
# 修改特定子節點的值
node = root.getElementsByTagName('child_node')[0]
node.firstChild.replaceWholeText('new_value')
# 保存修改后的XML文件
with open('new_file.xml', 'w') as f:
dom.writexml(f, addindent=' ', newl='\n', encoding='utf-8')
這些方法都可以讀取XML文件并提取、修改其中的數據。具體選擇哪種方法取決于個人需求和習慣。