//Multi-byte character item (ansi) displays data transmitted from the web page (utf-8)
void Utf8ToAnsi(const char* lpcszStr, char* lpwszStr)
{
DWORD dwMinSize;
WCHAR* strTmp;
dwMinSize = MultiByteToWideChar(CP_UTF8, 0, lpcszStr, -1, NULL, 0);
strTmp = new WCHAR[dwMinSize];
MultiByteToWideChar(CP_UTF8, 0, lpcszStr, -1, strTmp, dwMinSize);
int targetLen = WideCharToMultiByte(CP_ACP, 0, (LPWSTR)strTmp, -1, (char*)lpwszStr, 0, NULL, NULL);
WideCharToMultiByte(CP_ACP, 0, (LPWSTR)strTmp, -1, (char*)lpwszStr, targetLen, NULL, NULL);
}
//This is not easy to write.
std::string Utf8ToAnsi(const char* lpcszStr)
{
DWORD dwMinSize;
WCHAR* strTmp;
dwMinSize = MultiByteToWideChar(CP_UTF8, 0, lpcszStr, -1, NULL, 0);
strTmp = new WCHAR[dwMinSize];
MultiByteToWideChar(CP_UTF8, 0, lpcszStr, -1, strTmp, dwMinSize);
const int size = sizeof(lpcszStr);
//std::cout << "sizeof " << sizeof(lpcszStr) << std::endl;
//std::cout << "strlen " << strlen(lpcszStr) << std::endl;
char lpwszStr[size];
int targetLen = WideCharToMultiByte(CP_ACP, 0, (LPWSTR)strTmp, -1, lpwszStr, 0, NULL, NULL);
WideCharToMultiByte(CP_ACP, 0, (LPWSTR)strTmp, -1, lpwszStr, targetLen, NULL, NULL);
return lpwszStr;
}