在WinAPI中使用Unicode的奇怪字符而不是国家字母

时间:2012-12-11 16:31:05

标签: c++ winapi unicode


我的程序从文件中读取文本并将其放在组合框中。
当文件包含带有英文字符的文本时,一切正常。
当它包含一些抛光字母时,它们将替换为奇怪的字符。
文件编码为UTF-8(无BOM)。

myCombo = CreateWindowExW(WS_EX_CLIENTEDGE, (LPCWSTR)L"COMBOBOX", NULL,
                             WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST,
                             a, b, c, d,
                             hwnd, (HMENU)ID_COMBO, hThisInstance, NULL);

wstring foo;
wifstream bar("theTextFile.txt");
getline(bar, foo);
SendMessageW(myCombo, CB_ADDSTRING, (WPARAM)0, (LPARAM)(foo.c_str()));

如何让我的节目显示正确的国内信件?

PS。抱歉我的英语不好:)

1 个答案:

答案 0 :(得分:3)

默认情况下,

wifstream不会在Windows上读取UTF-8文本。流的语言环境中的codecvt方面是从文件中的字节转换为wchar_t的方法,因此您需要对其进行设置,使其转换为您想要的wchar_t。 / p>

这样的事情:

#include <fstream>
#include <string>

#include <locale>  // std::locale
#include <codecvt> // std::codecvt_utf8_utf16
#include <memory>  // std::unique_ptr

#include <Windows.h> // WriteConsoleW

int main(int argc, const char * argv[])
{
    std::wstring foo;
    std::wifstream bar("theTextFile.txt");

    typedef std::codecvt_utf8_utf16<wchar_t, 0x10FFFF, std::consume_header> codecvt;
    std::unique_ptr<codecvt> ptr(new codecvt);
    std::locale utf8_locale((std::locale()), ptr.get());
    ptr.release();
    bar.imbue(utf8_locale);

    std::getline(bar, foo);

    DWORD n;
    WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), foo.c_str(), foo.size(), &n, NULL);
}