MBCSとUNICode文字セットは互いに変換する.


異なる言語のオペレーティングシステムのデフォルトのMBCSは異なって、時にはUNICODと互いに変換する必要がある.コードは次のとおりです.
#include <stdio.h>
#include <windows.h>
#include <iostream>
#include <string>

using namespace std;

wstring MultiCharToWideChar(string str)
{
    // , 
    int len = MultiByteToWideChar(CP_ACP, 0, str.c_str(), str.size(), NULL, 0);
    wchar_t *buffer = new wchar_t[len+1];

    // 
    MultiByteToWideChar(CP_ACP, 0, str.c_str(), str.size(), buffer, len);
    buffer[len]= L'\0';

    wstring return_value = buffer;
    delete [] buffer;

    return return_value;
}

string WideCharToMultiChar(wstring wstr)
{
    int len = 
        WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), wstr.size(), NULL, 0, NULL, NULL);
    char *buffer = new char[len+1];

    WideCharToMultiByte(CP_ACP, 0, wstr.c_str(), wstr.size(), buffer, len, NULL, NULL);
    buffer[len] = '\0';

    string return_value = buffer;
    delete []buffer;

    return return_value;
}

#define CHARBUF " ,  !";

void main()
{
    // locale
    // cout 
    setlocale(LC_ALL, "");

    char szBuf[] = CHARBUF;
    cout << szBuf << " length = " << strlen(szBuf) << endl;

    wstring wstr = MultiCharToWideChar(szBuf);
    wcout << wstr << " length = " << wstr.length() << endl;

    string str = WideCharToMultiChar(wstr);
    cout << str << " length = " << str.length() << endl;
}