批量修改XML文件

时间:2011-01-11 19:18:02

标签: xml windows batch-file

好的,所以我对使用For / F并不是很熟悉。我可以修改它,如果文件是静态的,并且有一组我可以跳过然后从中提取数据的行。我目前正在尝试修改.XML文件。该文件将具有不同的行数,但始终具有以下

</SyncWindow> </AutoSyncWindows> <SyncServiceConnections /> <DaysToRetainRecordedData>90</DaysToRetainRecordedData> <SyncRestartRequired>false</SyncRestartRequired> - <LastGroupsSynced>

<DaysToRetainRecordedData>90</DaysToRetainRecordedData>的值可能会有所不同,例如<DaysToRetainRecordedData>30</DaysToRetainRecordedData>

使用令牌,搜索该行的.XML文件并使用以下<DaysToRetainRecordedData>0</DaysToRetainRecordedData>覆盖它的最有效方法

我无法覆盖整个.XML文件,因为它们具有因机器而异的唯一服务器密钥。所以我需要能够找到该行并将值编辑为0。 有什么想法吗?如果For / F不是最有效的方法,我可以根据需要转移到VBS。但它必须从纯shellcode调用,并会使事情变得更复杂。

1 个答案:

答案 0 :(得分:4)

最优雅,灵活和安全的方法是下载msxsl.exe,然后使用一个小的XSLT样式表来仅修改XML中所需的值:

<!-- DaysToRetainRecordedData.xsl -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:param name="newValue" select="0" />

  <!-- this template copies your input XML unchanged -->
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*" />
    </xsl:copy>
  </xsl:template>

  <!-- this template changes one single value -->
  <xsl:template match="DaysToRetainRecordedData/text()">
    <xsl:value-of select="$newValue" />
  </xsl:template>
</xsl:stylesheet>

使用以下命令在命令行上调用:

msxsl.exe input.xml DaysToRetainRecordedData.xsl –o output.xml newValue=0

命令行参数newValue将显示在XSL程序中。