2

我有一个 xml 文件和一个 python 脚本用于向该 xml 文件添加一个新节点。我使用 xml.dom.minidom 模块来处理 xml 文件。下面给出了用 python 模块处理后的我的 xml 文件

<?xml version="1.0" ?><Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PostBuildEvent>
  <Command>xcopy &quot;SourceLoc&quot; &quot;DestLoc&quot;</Command>
</PostBuildEvent>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<Import Project="project.targets"/></Project>

我实际需要的是如下所示。更改是在第一行之后和最后一行之前的换行符,并且“&”也转换为“

<?xml version="1.0" ?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PostBuildEvent>
  <Command>xcopy "SourceLoc" "DestLoc"</Command>
</PostBuildEvent>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<Import Project="project.targets"/>
</Project>

我使用的python代码如下

xmltree=xml.dom.minidom.parse(xmlFile)
for Import in Project.getElementsByTagName("Import"):
   newImport = xml.dom.minidom.Element("Import")
   newImport.setAttribute("Project", "project.targets")
vcxprojxmltree.writexml(open(VcxProjFile, 'w'))

我应该在我的代码中更新什么以获取正确格式的 xml

谢谢,

4

1 回答 1

1

来自 minidom 的文档:

Node.toprettyxml([indent=""[, newl=""[, encoding=""]]])

Return a pretty-printed version of the document. indent specifies the indentation string and defaults to a tabulator; newl specifies the string emitted at the end of each line and defaults to \n.

这就是您从 minidom 获得的所有自定义设置。

尝试插入一个文本节点作为换行符的根同级节点。希望不灭。我建议使用 re 模块中的正则表达式并手动插入。

至于删除 SGML 实体,python 标准库中显然有一个未记录的函数:

import HTMLParser
h = HTMLParser.HTMLParser()
unicode_string = h.unescape(string_with_entities)

或者,您可以手动执行此操作,再次使用 re,因为所有命名实体名称和相应的代码点都在htmlentitydefs模块内。

于 2012-09-07T10:37:55.270 回答