使用Powershell替换XML中的字符串会导致MALFORMED XML

前端之家收集整理的这篇文章主要介绍了使用Powershell替换XML中的字符串会导致MALFORMED XML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个相当大的 XML文件,我需要替换其中的一些连接字符串.

我使用以下代码替换字符串:

$temp = Get-Content .\bigxmlfile.xml
$temp.replace("STRING1","STRING2") | out-file .\bigxmlfile.xml -force

这样就可以很好地改变字符串,但由于某种原因,总是会破坏XML.
我无法弄清楚原因.

Out-File默认编写Unicode文件.使用-Encoding来修复它:
$temp = Get-Content .\bigxmlfile.xml
$temp.replace("STRING1","STRING2") | out-file .\bigxmlfile.xml -force -encoding ascii

或者,使用Set-Content:

$temp = Get-Content .\bigxmlfile.xml
$temp.replace("STRING1","STRING2") | set-content .\bigxmlfile.xml -force
原文链接:https://www.f2er.com/xml/292708.html

猜你在找的XML相关文章