使用Windows批处理文件更改XML文件中的标记数据

时间:2013-06-11 21:38:11

标签: xml windows batch-file

我有一个包含多个标签的XML文件,我正在尝试使用批处理脚本更改其中一个标记的内容。

xml文件的一个示例是:

<ConfigurationData>
<ReportsFolder>\Reports</ReportsFolder>
<Helpfolder>\Help</HelpFolder>
<InstallationType>Terminal</InstallationType>
<LicenseFolder>..\License</LicenseFolder>
</ConfigurationData>

我正在尝试将<InstallationType></InstallationType>之间的数据更改为我选择的另一个变量。我想我需要某种For循环来找到xml文件的那一部分,但是我对于如何编辑那一部分感到很遗憾。

3 个答案:

答案 0 :(得分:12)

您确实应该使用专门用于操作XML的工具。

但是,在紧要关头,您可以使用任何可以执行正则表达式搜索和替换的工具来执行一个天真的解决方案,该解决方案可以在文件布局时使用该文件,但可能会因逻辑上等效的XML文件而失败重新安排了物理布局。

我喜欢使用我编写的名为REPL.BAT的混合JScript /批处理实用程序来通过批处理脚本处理文本文件。该脚本将在XP之后的任何本机Windows计算机上运行,​​并且不需要安装任何第三方可执行文件。单击链接以获取脚本代码和更全面的描述。

使用REPL.BAT,快速有效但天真的解决方案就像:

setlocal enableDelayedExpansion
set "newValue=myNewValue"
type "fileName.xml"|repl "(<InstallationType>).*(</InstallationType>)" "$1!newValue!$2" >fileName.xml.new
move /y "fileName.xml.new" "fileName.xml"

答案 1 :(得分:9)

@echo off
setlocal EnableDelayedExpansion

set anotherVariable=New value

(for /F "delims=" %%a in (theFile.xml) do (
   set "line=%%a"
   set "newLine=!line:InstallationType>=!"
   if "!newLine!" neq "!line!" (
      set "newLine=<InstallationType>%anotherVariable%</InstallationType>"
   )
   echo !newLine!
)) > newFile.xml

使用示例数据输出:

<ConfigurationData>
<ReportsFolder>\Reports</ReportsFolder>
<Helpfolder>\Help</HelpFolder>
<InstallationType>New value</InstallationType>
<LicenseFolder>..\License</LicenseFolder>
</ConfigurationData>

答案 2 :(得分:0)

GNU sed

sed "/InstallationType/s/>[^<]*</>New Value</" file.xml

..输出:

<ConfigurationData>
<ReportsFolder>\Reports</ReportsFolder>
<Helpfolder>\Help</HelpFolder>
<InstallationType>New Value</InstallationType>
<LicenseFolder>..\License</LicenseFolder>
</ConfigurationData>