在Powershell中读取带有BOM的XML文件
Powershell 似乎在使用 unicode BOM 的 xml 文件上吐槽 - 代码:
$xml = [xml]{ get-content $filename }
因“根级别的数据无效”而爆炸。
有没有一种简单的方法可以做到这一点,而无需摆弄文件的内容?
Powershell seems to be barfing on an xml file with a unicode BOM - the code:
$xml = [xml]{ get-content $filename }
blows up with 'Data at the root level is invalid'.
Is there an easy way to do this without fiddling around with the contents of the file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试将脚本块转换为 XML。使用
()
而不是{}
:事实上,错误消息已经告诉您这么多:
您注意到脚本块的内容如何显示在错误消息中吗?
You're trying to convert a script block into XML here. Use
()
instead of{}
:In fact, the error message tells you as much already:
You notice how the contents of the script block show up in the error message?