从字符转换为 TCHAR 中获得奇怪的字符

Getting weird characters from conversion of char to TCHAR

本文关键字:字符 转换 TCHAR      更新时间:2023-10-16

我从转换中得到了非常奇怪的字符。知道为什么吗?我从外部设备获取"数据",我需要将其显示在win32 GUI上。当我没有问题时

printf("%sn",data); 

在控制台模式下,但在将其迁移到 Win32 时遇到问题,这需要我转换为 TCHAR 才能显示。

CHAR data[256];
TCHAR data1[256];
MultiByteToWideChar(CP_ACP,MB_COMPOSITE,data,-1,data1,0);   
CreateWindow(TEXT("STATIC"), data1, WS_VISIBLE | WS_CHILD |
                  10, 50,300,300,hWnd, (HMENU) none, NULL, NULL);

顺便说一下,使用

hDLL=LoadLibrary("MyKad.dll");

在Win32中无法工作,所以我不得不使用

hDLL=LoadLibrary(TEXT("MyKad.dll"));

我可以知道这是对的吗?谢谢

代码失败的原因是您在 MultiByteToWideChar 的最后一个参数中传递了0。您可以通过传递长度来修复代码,如果data1

MultiByteToWideChar(CP_ACP, MB_COMPOSITE, data, -1, data1, 256);   

另请注意,在调用 API 函数时应检查错误。如果你这样做了,你会发现MultiByteToWideChar失败了。

我使用以下函数转换为 UTF-16:

std::wstring MultiByteStringToWideString(const std::string& MultiByte,
    const UINT CodePage)
{
    std::wstring result;
    int cchWideChar = MultiByteToWideChar(CodePage, 0, MultiByte.c_str(), -1, 
        NULL, 0);
    if (cchWideChar > 0)
    {
        wchar_t* bufferW = new wchar_t[cchWideChar];
        if (MultiByteToWideChar(CodePage, 0, MultiByte.c_str(), -1, bufferW, 
            cchWideChar) != 0)
        {
            result = std::wstring(bufferW);
        }
        delete[] bufferW;
    }
    return result;
}

因此,您可以按如下方式使用它:

std::wstring windowName = MultiByteStringToWideString(data, CP_ACP);
CreateWindow(L"STATIC", windowName.c_str(), ...);