python处理xml文件的方法小结

python处理xml文件的方法小结,第1张

概述本文实例讲述了python处理xml文件方法。分享给大家供大家参考,具体如下:

本文实例讲述了python处理xml文件的方法。分享给大家供大家参考,具体如下:

前一段时间因为工作的需要,学习了一点用Python处理xml文件的方法,现在贴出来,供大家参考。

xml文件是按节点一层一层来叠加的,最顶层的是根节点。比如说:

<sys:String x:Key="STR_license_Withoutlicense">Sorry,you are not authorized.</sys:String>

其中sys:String为节点名字,x:Key的内容为Attribute,xml节点值为sys:String的子节点,它是文本节点类型。<节点名称   x:Key="Attribute">子节点。。。

RPD的xml格式:

<ResourceDictionary><sys:String x:Key="STR_Startup_LaunchRPD">Launching polycom RealPresence Desktop</sys:String><sys:String x:Key="STR_Startup_CheckFolder">Checking folder</sys:String>

CMAD的xml格式:

<language-strings> <ABK_CALL comment="verb (command,button on screen to press to place a call);" controls="button" products="HDX,VSX,CMAD,Venus Main">  <araBIC notes="" last-change-date="" status="">打电话</araBIC>  <CHInesE_S notes="" last-change-date="" status="">呼叫</CHInesE_S>

该代码的功能是:

从RPD的String中取出节点值,在CMAD的String中查找是否已经存在,如果存在,则返回CMAD中对应String的Nodename(节点名),并把两个节点名一个做节点名,一个做节点值写到xml文件中;如果不存在,则把RPD中的该节点写到另外一个xml文件中。代码如下:

import xml.dom.minIDomfrom xml.dom.minIDom import documentRPD_Str_path = "E:/PythonCode/StringResource.en-US.xaml"RPD_dom = xml.dom.minIDom.parse(RPD_Str_path)CMAD_Str_path = "E:/PythonCode/M500_RPM13_0522.xml"CMAD_dom = xml.dom.minIDom.parse(CMAD_Str_path)#得到根节点RPD_root = RPD_dom.documentElementCMAD_root = CMAD_dom.documentElementdef Isstr_already_Translated(RPD_Str):  for firstLevel in CMAD_root.childNodes:    for SecondLevel in firstLevel.childNodes:      if SecondLevel.nodeType == SecondLevel.ELEMENT_NODE:        if SecondLevel.nodename == "ENGliSH_US":          if RPD_Str == SecondLevel.childNodes[0].data.strip():            return firstLevel.nodename          else:            continue        else:          continue      else:        continue    else:      continue  else:    return "Null"#用document来写xml文件MapPing_doc = document()MapPing_root = MapPing_doc.createElement("Common_String")MapPing_doc.appendChild(MapPing_root)Translation_doc = document()Translation_root = Translation_doc.createElement("Need_Translation_String")Translation_doc.appendChild(Translation_root)for node in RPD_root.childNodes:  if node.nodeType == node.ELEMENT_NODE:#    print node.getAttribute("x:Key") +"  +  "+ node.childNodes[0].data  CMAD_Key = Isstr_already_Translated(node.childNodes[0].data.strip())  if(CMAD_Key != "Null"):    mKey = MapPing_doc.createElement(node.getAttribute("x:Key"))    MapPing_root.appendChild(mKey)    mValue = MapPing_doc.createTextNode(CMAD_Key)    mKey.appendChild(mValue)  elif(CMAD_Key == "Null"):    Key = Translation_doc.createElement('sys:String')    Translation_root.appendChild(Key)    Key.setAttribute('x:Key',node.getAttribute("x:Key"))    Value = Translation_doc.createTextNode(node.childNodes[0].nodeValue)    Key.appendChild(Value)    continueelse:  path1 = "E:/PythonCode/ID_MapPing.xml"  try:    import codecs    f1 = codecs.open(path1,"wb","utf-8")    f1.write(MapPing_doc.toprettyxml(indent=" "))  except:    print('Write xml file Failed.... file:{0}'.format(path1))  path2 = "E:/PythonCode/Need_Translate_String.xml"  try:    f2 = codecs.open(path2,"utf-8")    f2.write(Translation_doc.toprettyxml(indent=" "))  except:    print('Write xml file Failed.... file:{0}'.format(path2))

PS:这里再为大家提供几款关于xml *** 作的在线工具供大家参考使用:

在线XML/JsON互相转换工具:
http://tools.jb51.net/code/xmljson

在线格式化XML/在线压缩XML
http://tools.jb51.net/code/xmlformat

XML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compress

XML代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat

更多关于Python相关内容感兴趣的读者可查看本站专题:《Python *** 作xml数据技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串 *** 作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录 *** 作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

总结

以上是内存溢出为你收集整理的python处理xml文件的方法小结全部内容,希望文章能够帮你解决python处理xml文件的方法小结所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1202255.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存