如何将std :: wstring转换为std :: string而不丢失波兰字符(ąęźćżłó)?
std::string readControlText(HWND window)
{
wchar_t buf[1024];
GetWindowText(window, buf, 1024);
std::wstring tmp(buf);
return std::string(tmp.begin(), tmp.end());
}
我需要std :: string与我的服务器进行通信。