免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 11272 | 回复: 3
打印 上一主题 下一主题

[新手问题]怎么修改xml文件中某个key的值? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-06-13 11:58 |只看该作者 |倒序浏览
比如,.vcproj文件中
  1.                         <Tool
  2.                                 Name="VCCLCompilerTool"
  3.                                 Optimization="0"
  4.                                 AdditionalIncludeDirectories="./include;./src;../../common/include"
  5.                                 PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
  6.                                 MinimalRebuild="true"
  7.                                 BasicRuntimeChecks="3"
  8.                                 RuntimeLibrary="3"
  9.                                 UsePrecompiledHeader="0"
  10.                                 WarningLevel="3"
  11.                                 Detect64BitPortabilityProblems="true"
  12.                                 DebugInformationFormat="4"
  13.                         />
复制代码
可以用xml.dom.minidom模块读取到PreprocessorDefinitions的值。
现在要替换PreprocessorDefinitions中的WIN32为WIN64,并把修改结果写回xml文件。

这种操作可以用到哪些模块和方法?新手,对相关的处理模块不是很熟悉~~ 求教,十分感谢~~

论坛徽章:
0
2 [报告]
发表于 2011-06-13 14:31 |只看该作者
直接调用set_text方法,然后写回去不

论坛徽章:
0
3 [报告]
发表于 2011-06-13 16:01 |只看该作者
  1.         dom = xml.dom.minidom.parseString(xml_content)
  2.         root = dom.documentElement
  3.         for config_element in root.getElementsByTagName("Configuration"):
  4.                 if config_element.getAttribute("Name") == config_tag:
  5.                         for tool_element in config_element.getElementsByTagName("Tool"):
  6.                                 if tool_element.getAttribute("Name") == "VCCLCompilerTool":
  7.                                         item_value = tool_element.getAttribute("PreprocessorDefinitions")
  8.                                         if len(item_value) > 0:
  9.                                                 #print "%s:%s" %(config_tag, item_value)
  10.                                                 tool_element.setAttribute("PreprocessorDefinitions", new_macro)
  11.                                                 item_value = tool_element.getAttribute("PreprocessorDefinitions")
  12.                                                 #print "%s:%s" %(config_tag, item_value)
  13.                                                 #print xml_content        # debug only
  14.                                                 return item_value
复制代码
setAttribute()方法修改后,在下一次调用getAttribute()能得到修改后的值~~ 但是print xml_content时这个修改后的值并未出现~~ 修改后的值若能出现在xml_content中,则可以重新写文件即可得到修改后的.vcproj

怎么把修改后的值也在xml_content中修改???

论坛徽章:
0
4 [报告]
发表于 2011-06-14 10:49 |只看该作者
setAttribute()修改之后的内容可通过调用root.toxml()得到~~

print root.toxml() 或是把这个输出写入文件~~


嚯嚯~~ 结贴~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP