我有两个包含许多项目的大型 XML 文件(c.100MB)。我想输出它们之间的区别。
每个项目都有一个 ID,我需要检查它是否在两个文件中。如果是,那么我需要比较该项目的各个值以确保它是同一个项目。
SAX 解析器是解决这个问题的最佳方法吗?它是如何使用的?我使用了元素树和 findall,它们适用于较小的文件,但现在我不能适用于大文件。
srcTree = ElementTree()
srcTree.parse(srcFile)
# finds all the items in both files
srcComponents = (srcTree.find('source')).find('items')
srcItems = srcComponents.findall('item')
dstComponents = (dstTree.find('source')).find('items')
dstItems = dstComponents.findall('item')
# parses the source file to find the values of various fields of each
# item and adds the information to the source set
for item in srcItems:
srcId = item.get('id')
srcList = [srcId]
details = item.find('values')
srcVariables = details.findall('value')
for var in srcVariables:
srcList.append((var.get('name'),var.text))
srcList = tuple(srcList)
srcSet.add(srcList)