使用 Windows CMD 在多个 xml 文件(目录内)中搜索并替换字符串:

使用 Windows CMD 在多个 xml 文件(目录内)中搜索并替换字符串:

有谁能帮我推荐一个批处理脚本,在目录中的多个 xml 文件中查找“utf-16”字符串并将其替换为“utf-8”。无需使用查找和替换工具。替换需要在现有文件本身中完成。

答案1

使用任何 XSLT 处理器。例如 msxsl。

命令行转换实用程序

MSXML 4.0 Service Pack 2(Microsoft XML 核心服务)

zero.xsl- 样式表转换test.xmltest2.xml

<xsl:output method="xml" encoding="UTF-8" />将 xml 转换为 UTF-8。

Zeroxml test.xml

Zeroxml.cmd:

@echo off
@set name=%1
msxsl.exe %name% zero.xsl -o %name:~0,-4%2.xml

零.xsl:

<!-- The Identity Transformation -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<!-- <xsl:output method="html" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/> -->


<xsl:output method="html" media-type="application/vnd.ms-excel" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/>

<!-- <xsl:output omit-xml-declaration="no" indent="yes" encoding="UTF-8" method="html" />  -->
<!-- <xsl:output method="xml" media-type="application/vnd.ms-excel" encoding="UTF-8" indent="yes"     omit-xml-declaration="no"/>  -->
<!-- <xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="no"/>  -->
<!-- <xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/> -->

  <!-- Whenever you match any node or any attribute -->
  <xsl:template match="node()|@*">
    <!-- Copy the current node -->
    <xsl:copy>
      <!-- Including any attributes it has and any child nodes -->
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

 <xsl:template match="*|@*|comment()|
                          processing-instruction()|text()">
         <xsl:copy>
             <xsl:apply-templates select="*|@*|comment()|
                                      processing-instruction()|text()"/>
         </xsl:copy>
  </xsl:template>

</xsl:stylesheet>

方法2、将UTF-16转换为UTF-8命令行:

Unicode — UTF-16 格式小端字节顺序。

powershell gc test.xml -encoding Unicode^|sc testUTF8.xml -encoding UTF8

BigEndianUnicode——UTF-16 格式大端字节顺序。

powershell gc test.xml -encoding BigEndianUnicode^|sc testUTF8.xml -encoding UTF8

将 SourceDirXML 目录和子目录中的所有 xml 文件 UTF-16 转换为 UTF-8

powershell $in='C:\SourceDirXML';$out='C:\OutputUTF8XML\';ls -Fo -r $in -Fi *.xml^|%{(gc $_.FullName -encoding Unicode^|sc ($out+$_.Name) -encoding UTF8)}

使用 Windows CMD 在多个 xml 文件(目录内)中搜索并替换字符串:

powershell $in='C:\SourceDirXML';$out='C:\OutputUTF8XML\';ls -Fo -r $in -Fi *.xml^|%{(gc $_.FullName^|%{$_ -replace 'oldstring','newstring'}^|sc ($out+$_.Name) -encoding UTF8)}

相关内容