vote up 2 vote down star
2

The following code shows unexpected behaviour on my machine (I'm using Visual C++ 2008 SP1 on Windows XP here):

int main() {
      SetConsoleOutputCP( CP_UTF8 );
      std::cout << "\xc3\xbc";
      int fail = std::cout.fail() ? '1': '0';
      fputc( fail, stdout );
      fputs( "\xc3\xbc", stdout );
}

I simply compiled with cl /EHsc test.cpp. Output in a console window is ü0ü (translated to Codepage 1252, originally shows some line drawing charachters in the default Codepage, perhaps 437). When I change the settings of the console window to use the "Lucida Console" character set and run my test.exe again, output is changed to , which means

  • the character ü can be written using fputs and its UTF-8 encoding C3 BC
  • std::cout does not work for whatever reason
  • the streams failbit is setting after trying to write the character

I tried to raise this issue on "Microsoft Connect" (see here), but MS has not been very helpful. You might as well look here as something similar has been asked before.

Can you reproduce this problem?

What am I doing wrong? Shouldn't the std::cout and the fputs have the same effect?

flag
i've had trouble with c++ iostreams before. there's lots of hidden nastiness that causes problems. this isn't worth of an answer, but when iostreams gives you trouble, use c's stdio, i've had to many times before with issues just like this. – Anacrolix Nov 2 at 10:43
Yes, using iostreams is more complicated than stdio, there are even [full-length text books](amazon.com/Standard-Iostreams-Locales-Programmers…) about this. But iostreams give you a great deal of flexibility, which I am using gladly. – mkluwe Nov 2 at 11:09
Is'nt it a problem of the Windows Console ? I remember that it's not unicode aware by any means, creating lot of such problems... – Bluebird75 Nov 2 at 12:41
As you see, I can output UTF-8 encoded string in the Windows console (via fputs) and I can type UTF-8 encoded files with the type command (after having done chcp 65001). Thus I thought it can handle this encoding… – mkluwe Nov 2 at 12:56

1 Answer

vote up 1 vote down

Oi. Congratulations on finding a way to change the code page of the console from inside your program. I didn't know about that call, I always had to use chcp.

I'm guessing the C++ default locale is getting involved. By default it will use the code page provide by GetThreadLocale() to determine the text encoding of non-wstring stuff. This generally defaults to CP1252. You could try using SetThreadLocale() to get to UTF-8 (if it even does that, can't recall), with the hope that std::locale defaults to something that can handle your UTF-8 encoding.

link|flag
Definetely not a solution, but a thing I have not thought about before. I'll try that when I'm back at work in a few days (at home I'm using Linux…). – mkluwe Nov 4 at 18:09

Your Answer

Get an OpenID
or

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