Can anyone Provide a Simple Example to Read and Write in the Unicode File a Unicode Character ?
|
feedback
|
|
try http://utfcpp.sourceforge.net/. the link has an introductory example to read a utf8 file, line by line. | |||
|
feedback
|
|
In case you're using Windows. Use fgetws http://msdn.microsoft.com/en-us/library/c37dh6kf(VS.71).aspx to read and fputws http://msdn.microsoft.com/en-us/library/t33ya8ky(VS.71).aspx to write. The example code are in the provided links. | |||
|
feedback
|
|
On linux I use the
This is overly simple to demonstrate the conversion. In the real world you would normally have two nested loops:
| |||
|
feedback
|
wchar_tsize is not everywhere the same: on Windows you'll usually store strings internally in UTF-16 LE, while on Linux in UTF-8 (withchar) or UTF-32 (wchar_t). – Matteo Italia Oct 11 '10 at 10:40