vote up 0 vote down star

Hi, what is the best way to convert a UTF-16 files to UTF-8? I need to use this in a cmd script.

flag

5 Answers

vote up 4 vote down check

There is a GNU tool recode which you can also use on Windows. E.g.

recode utf16..utf8 text.txt
link|flag
1  
A Windows version of 'recode' can be downloaded as part of the 'GNU utilities for Win32' package from sourceforge: downloads.sourceforge.net/unxutils/… – msanders Jan 8 at 11:38
vote up 3 vote down

Perhaps with iconv?

link|flag
vote up 2 vote down

An alternative to Ruby would be to write a small .NET program in C# (.NET 1.0 would be fine, although 2.0 would be simpler :) - it's a pretty trivial bit of code. Were you hoping to do it without any other applications at all? If you want a bit of code to do it, add a comment and I'll fill in the answer...

EDIT: Okay, this is without any kind of error checking, but...

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);
    }
  }
}
link|flag
I was hoping there is a utility I could just use :) I would be grateful for a bit of code, cheers. – Grzenio Nov 5 '08 at 16:15
vote up 1 vote down

Certainly, the easiest way is to load the script into notepad, then save it again with the UTF-8 encoding. It's an option in the Save As dialog box..

link|flag
Cheers, I can use it as a workaround, but my script needs to do this conversion, I can't convert every file manually.... – Grzenio Nov 5 '08 at 15:03
vote up 0 vote down

If you have a ruby distribution installed, you can call a ruby script taking care of the conversion:

Ruby script to convert file(s) character encoding

In the same spirit: Perl script

In the absence of script support, you would have to code it like this C++ source using a WideCharToMultiByte() call...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.