我有一个文件保存为UCS-2 Little Endian我想更改编码,所以我运行以下代码:
cat tmp.log -encoding UTF8 > new.log
生成的文件仍然在UCS-2小端。这是因为管道总是以这种格式吗?有没有一个简单的方法来管道这个到一个新的文件作为UTF8?
如建议
here:
原文链接:https://www.f2er.com/javaschema/282733.htmlGet-Content tmp.log | Out-File -Encoding UTF8 new.log