首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

Python处置XML文件

2013-03-13 
Python处理XML文件import xml.dom.minidomtry:f open(filename)dom xml.dom.minidom.parseString(f.re

Python处理XML文件
import xml.dom.minidomtry: f = open(filename) dom = xml.dom.minidom.parseString(f.read())finally: f.close()if dom != None: root = dom.documentElement for element in root.getElementsByTagName("bean"): for prop in element.getElementsByTagName("property"): if prop.getAttribute("name") == "sequenceDao": print "find"

?

热点排行