Re: .txt file and Japanese text
Quote:
Originally Posted by
shilpal
Hi,
In one of my VC++ application i am using FILE::Write(); funciton to write data to a notepd file. It is fine, but now my requirement is to write Japanese text data to a notepad, for this what i have to do, is there any option to do so? please help me.
pal
MFC library contains bugs dealing with UNICODE, you can read it with whatever read functions and appropriate parameters available but writing to file fails to encode the characters properly, .NET offers a better solution with nice read and write. I used to have a hard time working with Japanese language, I hate its formats because it never gave me an open chance to use bad words, and that makes me just miss it so much.
Re: .txt file and Japanese text
Quote:
Originally Posted by
Ledidas
MFC library contains bugs dealing with UNICODE, you can read it with whatever read functions and appropriate parameters available but writing to file fails to encode the characters properly...
What MFC classes/methods contain bugs dealing with UNICODE? CStdioFile? perhaps...
But which bug did you find in CFile::Write method? :confused: