首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

utf8转换成ansi编码_ansi乱码

int CParserIni::ansi2utf8(const string& ansiStr, string& utf8Str) { int ret = kNoError; do{ //CP_ACP(ANSI字符集) if (ansiStr.empty()) BREAK_WITH_ERROR(kInvalidParameter); //现将本地代码页转换成utf16 int wlen = MultiByteToWideChar(CP_ACP, 0, ansiStr.c_str(), -1, NULL, 0); if (wlen == 0) BREAK_WITH_ERROR(kConvertError); wchar_t *pwBuf = new wchar_t[wlen + 1]; memset(pwBuf, 0, sizeof(wchar_t)*(wlen + 1)); if (MultiByteToWideChar(CP_ACP, 0, ansiStr.c_str(), ansiStr.length(), pwBuf, wlen)==0) BREAK_WITH_ERROR(kConvertError); //再将utf16转换utf8 int len = WideCharToMultiByte(CP_UTF8, 0, pwBuf, -1, NULL, NULL, NULL, NULL); if (len == 0) BREAK_WITH_ERROR(kConvertError); char *pBuf = new char[len + 1]; memset(pBuf, 0, len + 1); if (WideCharToMultiByte(CP_UTF8, 0, pwBuf, wlen, pBuf, len, NULL, NULL) == 0) BREAK_WITH_ERROR(kConvertError);

02
领券