- 论坛徽章:
- 0
|
- dom = xml.dom.minidom.parseString(xml_content)
- root = dom.documentElement
- for config_element in root.getElementsByTagName("Configuration"):
- if config_element.getAttribute("Name") == config_tag:
- for tool_element in config_element.getElementsByTagName("Tool"):
- if tool_element.getAttribute("Name") == "VCCLCompilerTool":
- item_value = tool_element.getAttribute("PreprocessorDefinitions")
- if len(item_value) > 0:
- #print "%s:%s" %(config_tag, item_value)
- tool_element.setAttribute("PreprocessorDefinitions", new_macro)
- item_value = tool_element.getAttribute("PreprocessorDefinitions")
- #print "%s:%s" %(config_tag, item_value)
- #print xml_content # debug only
- return item_value
复制代码 setAttribute()方法修改后,在下一次调用getAttribute()能得到修改后的值~~ 但是print xml_content时这个修改后的值并未出现~~ 修改后的值若能出现在xml_content中,则可以重新写文件即可得到修改后的.vcproj
怎么把修改后的值也在xml_content中修改??? |
|