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.请记住始终使 ...
随机推荐
- js源码保护
js的不可读化处理分为三个方面:压缩(compression).混淆(obfuscation) 和加密(encryption). (不可读化处理,这是我自己发明的术语,一切会增加代码不可读性的代码转换 ...
- Linux PAM&&PAM后门
Linux PAM&&PAM后门 我是壮丁 · 2014/03/24 11:08 0x00 PAM简介 PAM (Pluggable Authentication Modules )是 ...
- 重现PHP Core的调用栈
以前, 我曾经介绍过如何通过PHP的Core文件获取信息:如何调试PHP的Core之获取基本信息, 对于调用参数这块, 当时介绍的获取方法比较复杂. 于是今天我为PHP 5.4的.gdbini ...
- css中那些你可能没注意到的东西
1.inline元素,添加position:absolute;可定宽高,position:relative;则不行,不信你试试! 2.inline元素添加浮动后,不用加display:block;也可 ...
- 文件和目录之symlink和readlink函数
symlink函数创建一个符号链接. #include <unistd.h> int symlink( const char *actualpath, const char *sympat ...
- php.ini 中开启短标签 <?=$?>
制参数: short_open_tag = On如果设置为Off,则不能正常解析类似于这样形式的php文件:<?phpinfo()?> 而只能解析<?phpphpinfo()?> ...
- Java基础知识强化之IO流笔记71:NIO之 NIO的(New IO流)介绍
1. I/O 简介 I/O ( 输入/输出 ):指的是计算机与外部世界或者一个程序与计算机的其余部分的之间的接口.它对于任何计算机系统都非常关键,因而所有 I/O 的主体实际上是内置在操作系统中的. ...
- IOS中如何显示带有html标签的富文本
NSString *strHTML = @"<p>你好</p><p> 这是一个例子,请显示</p><p>外加一个ta ...
- c语言面试题之sizeof
c语言面试题之sizeof */--> c语言面试题之sizeof Table of Contents 1. sizeof 1 sizeof sizeof是c语言中判断数据类型或者表达式的长度符 ...
- 关于Git远程版本库
Git作为分布式版本库控制系统,每个人都是本地版本库的主人,可以在本地的版本库中随心所欲的创建分支和里程碑. 当需要多人协作时,问题就出现了: 1.如何避免因为用户把所有的本地分支都推送到了共享版本库 ...