当前位置:  开发笔记 > 开发工具 > 正文

UTF-16到UTF-8转换(用于Windows中的脚本)

如何解决《UTF-16到UTF-8转换(用于Windows中的脚本)》经验,为你挑选了4个好方法。

将UTF-16文件转换为UTF-8的最佳方法是什么?我需要在cmd脚本中使用它.



1> Kaarel..:

还有一个GNU工具重新编码,您也可以在Windows上使用它.例如

recode utf16..utf8 text.txt


Windows版本的"recode"可以从sourceforge下载为"GNU实用程序for Win32"软件包的一部分:http://downloads.sourceforge.net/unxutils/UnxUtils.zip?modtime = 1172730504&big_mirror = 0

2> Jon Skeet..:

Ruby的另一种选择是在C#中编写一个小的.NET程序(.NET 1.0会很好,虽然2.0会更简单:) - 这是一个非常简单的代码.您是否希望在没有任何其他应用程序的情况下完成此操作?如果你想要一些代码来做,请添加评论,我会填写答案......

编辑:好的,这没有任何错误检查,但......

using System;
using System.IO;
using System.Text;

class FileConverter
{
  static void Main(string[] args)
  {
    string inputFile = args[0];
    string outputFile = args[1];
    using (StreamReader reader = new StreamReader(inputFile, Encoding.Unicode))
    {
      using (StreamWriter writer = new StreamWriter(outputFile, false, Encoding.UTF8))
      {
        CopyContents(reader, writer);
      }
    }
  }

  static void CopyContents(TextReader input, TextWriter output)
  {
    char[] buffer = new char[8192];
    int len;
    while ((len = input.Read(buffer, 0, buffer.Length)) != 0)
    {
      output.Write(buffer, 0, len);
    }
  }
}



3> Tor Haugen..:

当然,最简单的方法是将脚本加载到记事本中,然后使用UTF-8编码再次保存.这是"另存为"对话框中的一个选项.


干杯,我可以用它作为解决方法,但我的脚本需要做这个转换,我无法手动转换每个文件....

4> PhiLho..:

也许用iconv?

推荐阅读
跟我搞对象吧
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有