使用 PowerShell 将 xml 从 UTF-16 转换为 UTF-8
将 XML 从 UTF16 转换为 UTF8 编码文件的最简单方法是什么?
What's the easiest way to convert XML from UTF16 to a UTF8 encoded file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能不是最理想的,但它确实有效。 只需加载 xml 并将其推回文件即可。 但 xml 标题丢失了,因此必须重新添加。
This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.
好吧,我想最简单的方法就是不关心文件是否是 XML,直接进行转换:
这仅适用于没有行
的 XML 。
Well, I guess the easiest way is to just not care about whether the file is XML or not and simply convert:
This will only work for XML when there is no
line.
尝试使用
XmlWriter
的解决方案:您可能需要查看
XMLDocument
以获取有关CreateXmlDeclaration
的更多说明。Try this solution that uses a
XmlWriter
:You may want to look at
XMLDocument
for more explanation onCreateXmlDeclaration
.