How can I read a unicode (utf-8) file into wstring (s) on the windows platform?
|
|
According to a comment by @Hans Passant, the simplest way is to use _wfopen_s. Open the file with mode Here is another pure C++ solution that works at least with VC++ 2010:
Except for |
||||
|
|
|
Here's a platform-specific function for Windows only:
Use like so:
Note the entire file is loaded in to memory, so you might not want to use it for very large files. |
|||||||||||||
|
|
This question was addressed in Confused about C++'s std::wstring, UTF-16, UTF-8 and displaying strings in a windows GUI. In sum, wstring is based upon the UCS-2 standard, which is the predecessor of UTF-16. This is a strictly two byte standard. I believe this covers Arabic. |
|||||||||||||||||||||
|
|
With C++11 support, you can use std::codecvt_utf8 facet which encapsulates conversion between a UTF-8 encoded byte string and UCS2 or UCS4 character string and which can be used to read and write UTF-8 files, both text and binary. In order to use facet you usually create locale object that encapsulates culture-specific information as a set of facets that collectively define a specific localized environment. Once you have a locale object, you can imbue your stream buffer with it:
which can be used like this:
Alternatively you can set the global C++ locale before you work with string streams which causes all future calls to the
|
||||
|
|
|
This is a bit raw, but how about reading the file as plain old bytes then cast the byte buffer to wchar_t* ? Something like:
|
|||
|
|
