前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >utf8转换成ansi编码_ansi乱码

utf8转换成ansi编码_ansi乱码

作者头像
全栈程序员站长
发布2022-09-27 16:14:39
3.8K0
发布2022-09-27 16:14:39
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

1、windows平台下

#ifdef _WIN32

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);

utf8Str = pBuf; delete[] pwBuf; delete []pBuf; pwBuf = NULL; pBuf = NULL;

} while (0);

return ret; }

int CParserIni::utf82ansi(const string& utf8Str, string& ansiStr) { int ret = kNoError;

do{ //将utf8转成utf16(wchar_t) if (utf8Str.empty()) BREAK_WITH_ERROR(kInvalidParameter); int wlen = MultiByteToWideChar(CP_UTF8, 0, utf8Str.c_str(), -1, NULL, NULL); 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_UTF8, 0, utf8Str.c_str(), utf8Str.length(), pwBuf, wlen) == 0) BREAK_WITH_ERROR(kConvertError);

//将wchar_t转换成ANSI int len = WideCharToMultiByte(CP_ACP, 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_ACP, 0, pwBuf, wlen, pBuf, len, NULL, NULL)==0) BREAK_WITH_ERROR(kConvertError);

ansiStr = pBuf; delete[] pwBuf; delete[] pBuf; pwBuf = NULL; pwBuf = NULL;

} while (0);

return ret; }

#endif

2、linux平台下

mbstowcs() wcstombs()

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/193188.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1、windows平台下
  • 2、linux平台下
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档