- 论坛徽章:
- 0
|
发一个写的Windows下的函数:
std::string CLS_WebSvrClient::stringToUtf8(const std::string & _strSrc )
{
//需要先转换为Unicode
//预转换,得到所需空间的大小
int wcsLen = ::MultiByteToWideChar(CP_ACP, NULL, _strSrc.c_str(), _strSrc.length(), NULL, 0);
//分配空间要给'\0'留个空间,MultiByteToWideChar不会给'\0'空间
wchar_t* wszString = new wchar_t[wcsLen + 1];
//转换
::MultiByteToWideChar(CP_ACP, NULL, _strSrc.c_str(), _strSrc.length(), wszString, wcsLen);
//最后加上'\0'
wszString[wcsLen] = '\0';
//在转为UTF-8
//预转换,得到所需空间的大小,这次用的函数和上面名字相反
int u8Len = ::WideCharToMultiByte(CP_UTF8, NULL, wszString, wcslen(wszString), NULL, 0, NULL, NULL);
//同上,分配空间要给'\0'留个空间
//UTF8虽然是Unicode的压缩形式,但也是多字节字符串,所以可以以char的形式保存
char* szU8 = new char[u8Len + 1];
//转换
//unicode版对应的strlen是wcslen
::WideCharToMultiByte(CP_UTF8, NULL, wszString, wcslen(wszString), szU8, u8Len, NULL, NULL);
//最后加上'\0'
szU8[u8Len] = '\0';
return (std::string)szU8;
} |
|