Python解析生成XML-ElementTree VS minidom
OS:Windows 7
关键字:Python3.4,XML,ElementTree,minidom
本文介绍用Python解析生成以下XML:
<Persons>
<Person>
<Name>LDL</Name>
<Description Language='English'><![CDATA[cdata text]]></Description>
</Person>
<Person>
<Name>China</Name>
<Description Language='English'><![CDATA[cdata text]]></Description>
</Person>
</Persons>
1.创建一个xml文件名为src.xml,内容如上,放到c:\temp
2.使用ElementTree读取src.xml,并创建一个内容相同的xml名为target-tree.xml。
ElementTreeSample.py如下:
# -*- coding: utf-8 -*-
"""
Sample of xml.etree.ElementTree @author: ldlchina
""" import os
import sys
import logging
import traceback
import xml.etree.ElementTree as ET
import time def copy_node(src_node, target_node):
# Copy attr
for key in src_node.keys():
target_node.set(key, src_node.get(key)) if len(list(src_node)) > 0:
for child in src_node:
target_child = ET.Element(child.tag)
target_node.append(target_child)
copy_node(child, target_child)
else:
target_node.text = src_node.text def read_write_xml(src, target):
tree = ET.parse(src)
root = tree.getroot() target_root = ET.Element(root.tag)
start_time = time.time() * 1000
copy_node(root, target_root)
end_time = time.time() * 1000
print('copy_node:' + str(end_time - start_time)) target_tree = ET.ElementTree(target_root)
target_tree.write(target)
logging.info(target) def main():
try:
current_file = os.path.realpath(__file__) # Configure logger
log_file = current_file.replace('.py', '.log')
logging.basicConfig(filename = log_file, filemode = 'w', level = logging.INFO) # Create console handler
ch = logging.StreamHandler()
ch.setLevel(logging.INFO) logger = logging.getLogger('')
logger.addHandler(ch) #src = sys.argv[1]
#target = sys.argv[2] # For debugging
src = 'C:/temp/src.xml'
target = 'C:/temp/target-tree.xml' # Generate results
start_time = time.time() * 1000
read_write_xml(src, target)
end_time = time.time() * 1000
print('read_write_xml:' + str(end_time - start_time))
except:
logging.exception(''.format(traceback.format_exc())) input('Press any key to exit...') main()
3.使用minidom读取src.xml,并创建一个内容相同的xml名为target-dom.xml。
MinidomSample.py如下:
# -*- coding: utf-8 -*-
"""
Sample of xml.dom.minidom @author: ldlchina
""" import os
import sys
import logging
import traceback
import xml.dom.minidom as MD
import time def get_text(n):
nodelist = n.childNodes
rc = ""
for node in nodelist:
if node.nodeType == node.TEXT_NODE or node.nodeType == node.CDATA_SECTION_NODE:
rc = rc + node.data
return rc def copy_node(target_doc, src_node, target_node):
if not isinstance(src_node, MD.Document) and src_node.hasAttributes():
for item in src_node.attributes.items():
target_node.setAttribute(item[0], item[1])
for node in src_node.childNodes:
if node.nodeType == node.TEXT_NODE:
target_child = target_doc.createTextNode(node.nodeValue)
target_node.appendChild(target_child)
elif node.nodeType == node.CDATA_SECTION_NODE:
target_child = target_doc.createCDATASection(node.nodeValue)
target_node.appendChild(target_child)
elif node.nodeType == node.ELEMENT_NODE:
target_child = target_doc.createElement(node.nodeName)
target_node.appendChild(target_child)
copy_node(target_doc, node, target_child) def read_write_xml(src, target):
doc = MD.parse(src)
target_doc = MD.Document() start_time = time.time() * 1000
copy_node(target_doc, doc, target_doc)
end_time = time.time() * 1000
print('copy_node: ' + str(end_time - start_time)) # Write to file
f = open(target, 'w')
f.write(target_doc.documentElement.toxml())
f.close()
logging.info(target) def main():
try:
current_file = os.path.realpath(__file__) # Configure logger
log_file = current_file.replace('.py', '.log')
logging.basicConfig(filename = log_file, filemode = 'w', level = logging.INFO) # Create console handler
ch = logging.StreamHandler()
ch.setLevel(logging.INFO) logger = logging.getLogger('')
logger.addHandler(ch) #src = sys.argv[1]
#target = sys.argv[2] # For debugging
src = 'C:/temp/src.xml'
target = 'C:/temp/target-dom.xml' # Generate results
start_time = time.time() * 1000
read_write_xml(src, target)
end_time = time.time() * 1000
print('read_write_xml: ' + str(end_time - start_time))
except:
logging.exception(''.format(traceback.format_exc())) input('Press any key to exit...') main()
4.运行ElementTreeSample.py,得到XML如下:
<Persons><Person><Name>LDL</Name><Description Language="English">cdata text</Description></Person><Person><Name>China</Name><Description Language="Chinese">cdata text</Description></Person></Persons>
5.运行MinidomSample.py,得到XML如下:
<Persons>
<Person>
<Name>LDL</Name>
<Description Language="English"><![CDATA[cdata text]]></Description>
</Person>
<Person>
<Name>China</Name>
<Description Language="Chinese"><![CDATA[cdata text]]></Description>
</Person>
</Persons>
ElementTree VS minidom:
1.ElementTree执行速度会比minidom快一些。
2.ElemenTree不能分析XML的转行和缩进。minidom可以。
3.ElemenTree不支持CDATA,minidom可以。
Python解析生成XML-ElementTree VS minidom的更多相关文章
- python 批量生成xml标记文件(连通域坐标分割)
#!/usr/bin/python # -*- coding=utf-8 -*- # author : Manuel # date: 2019-05-15 from xml.etree import ...
- xStream解析生成xml文件学习资料
参考链接: http://www.cnblogs.com/hoojo/archive/2011/04/22/2025197.html
- Python 解析构建数据大杂烩 -- csv、xml、json、excel
Python 可以通过各种库去解析我们常见的数据.其中 csv 文件以纯文本形式存储表格数据,以某字符作为分隔值,通常为逗号:xml 可拓展标记语言,很像超文本标记语言 Html ,但主要对文档和数据 ...
- python解析robot framework的output.xml,并生成html
一.背景 Jenkins自动构建RF脚本,生成的RF特有HTML报告不能正常打开. 需求:用Python解析测试报告的xml数据,放在普通HTML文件中打开 二.output.xml数据 三.用pyh ...
- 【Python】 xml解析与生成 xml
xml *之前用的时候也没想到..其实用BeautifulSoup就可以解析xml啊..因为html只是xml的一种实现方式吧.但是很蛋疼的一点就是,bs不提供获取对象的方法,其find大多获取的都是 ...
- Python 解析 XML 文件生成 HTML
XML文件result.xml,内容如下: <ccm> <metric> <complexity>1</complexity> <unit> ...
- python 解析与生成xml
xml.etree.ElementTree模块为xml文件的提取和建立提供了简单有效的API.下文中使用ET来代表xml.etree.ElementTree模块. XML是一种内在的分层的数据形式,展 ...
- python xml文件解析 及生成xml文件
#解析一个database的xml文件 """ <databaselist type="database config"> <dat ...
- python XML文件解析:用ElementTree解析XML
Python标准库中,提供了ET的两种实现.一个是纯Python实现的xml.etree.ElementTree,另一个是速度更快的C语言实现xml.etree.cElementTree.请记住始终使 ...
随机推荐
- 从问题看本质: 研究TCP close_wait的内幕
Socket应用服务器TomcatOSUbuntu /* * @author: ahuaxuan * @date: 2010-4-30 */ 最近遇到的一个关于socket.close的问题,在某个 ...
- 动态追踪技术(中) - Dtrace、SystemTap、火焰图
http://openresty.org/cn/presentations.html http://weibo.com/agentzh?is_all=1 http://openresty.org/po ...
- careercup-中等难度 17.8
17.8 给定一个整数数组(有正数和负数),找出总和最大的连续序列,并返回总和. 解法: 就是求连续子序列的和最大,不过存在一个问题: 假设整个数组都是负数,怎么样才是正确的行为呢?看看这个简单的数组 ...
- UNIX标准化及实现之标准之间的冲突
就整体而言,这些不同的标准之间配合得相当好.但是我们也很关注它们之间的差别,特别是ISO C标准和POSIX.1之间的差别. ISO C定义了函数clock,它返回进程使用的CPU时间,返回值类型是c ...
- linux文件夹操作(及模糊搜索)
mkdir 文件夹名称 :创建文件夹 touch 文件名称 : 创建文件 给文件夹或文件授权 chmod -R 777 文件夹名称 : 递归给文件夹授读写执行权限 chmo ...
- mysql事务问题
mysql事务: 若mysql 开启事务后START TRANSACTION ,不显示提交commit,则默认自动回滚,而不是默认自动提交.
- div居中的三种方法
方法1: #div1{ width:200px; height:200px; background:green; position:absolute; left:0; top:0; right:0; ...
- 关于oozie
什么是Oozie? Oozie是一个工作流引擎服务器,用于运行Hadoop Map/Reduce和Pig 任务工作流.同时Oozie还是一个Java Web程序,运行在Java Servlet容器中, ...
- 3.x vector的用法
#include<vector> //struct struct GOLD_STRUCT { Sprite * goldspSprite; int goldValue; ...
- MVC下设置默认页为index.html
将RouteConfig代码修改为如下 public class RouteConfig { public static void RegisterRoutes(RouteCollection rou ...