将 Unicode UTF-8 文件读取到 WStrings
在 Windows 环境中,使用 C 11 提供了读取 Unicode (UTF-8) 的功能文件转换为 wstrings。这是通过使用 std::codecvt_utf8 方面实现的。
std::codecvt_utf8 方面
std::codecvt_utf8 方面有助于 UTF-8 之间的转换。 8 编码字节字符串和 UCS2 或 UCS4 字符串。这种多功能性支持读取和写入文本和二进制 UTF-8 文件。
用法
使用构面的实现涉及创建封装构面的语言环境对象和特定于区域设置的信息。通过在流缓冲区中注入此语言环境,可以读取 UTF-8 文件。
使用此方法的示例实现是:
#include <sstream> #include <fstream> #include <codecvt> std::wstring readFile(const char* filename) { std::wifstream wif(filename); wif.imbue(std::locale(std::locale::empty(), new std::codecvt_utf8<wchar_t>)); std::wstringstream wss; wss << wif.rdbuf(); return wss.str(); } int main() { std::wstring wstr = readFile("a.txt"); // Do something with your wstring return 0; }
全局语言环境设置
或者,可以使用 std::codecvt_utf8 方面设置全局 C 语言环境。此方法确保所有 std::locale 默认构造函数将返回全局区域设置的副本,从而消除显式流缓冲区注入的需要。
设置全局区域设置:
std::locale::global(std::locale(std::locale::empty(), new std::codecvt_utf8<wchar_t>));
通过此设置,您可以将文件读取操作简化为:
std::wifstream wif("a.txt"); std::wstringstream wss; wss << wif.rdbuf(); std::wstring wstr = wss.str();
以上是如何将 Unicode UTF-8 文件读取到 C 11 中的 wstring 中?的详细内容。更多信息请关注PHP中文网其他相关文章!