码迷,mamicode.com
首页 > Web开发 > 详细

【转】CEF3加载网页---多字节字符集和UNICODE字符集

时间:2018-07-08 12:37:17      阅读:492      评论:0      收藏:0      [点我收藏+]

标签:ide   sdn   ati   color   class   utf8   文字   div   nbsp   

 

static char* MBSCToCEF(const char* mbcsStr)
{
 wchar_t*  wideStr;
 char*   utf8Str;
 int   charLen;
 
 charLen = MultiByteToWideChar(CP_UTF8, 0, mbcsStr, -1, NULL, 0);
 charLen=strlen(mbcsStr)+1;
 wideStr = (wchar_t*) malloc(sizeof(wchar_t)*charLen);
 MultiByteToWideChar(CP_ACP, 0, mbcsStr, -1, wideStr, charLen);
 
 charLen = WideCharToMultiByte(CP_UTF8, 0, wideStr, -1, NULL, 0, NULL, NULL);
 
 utf8Str = (char*) malloc(charLen);
 
 WideCharToMultiByte(CP_UTF8, 0, wideStr, -1, utf8Str, charLen, NULL, NULL);
 
 free(wideStr);
 return utf8Str;
 
} 

 

使用frame加载网页(含中文字符)时LoadURL,要进行转换,才能加载成功

 

转自:https://blog.csdn.net/cyloser/article/details/49786401

【转】CEF3加载网页---多字节字符集和UNICODE字符集

标签:ide   sdn   ati   color   class   utf8   文字   div   nbsp   

原文地址:https://www.cnblogs.com/nightnine/p/9279611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!