关于Cocos2d-x中文乱码问题的解决

Posted 杭者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Cocos2d-x中文乱码问题的解决相关的知识,希望对你有一定的参考价值。

1.首先,复制下面的代码,创建一个icov,h的头文件,并放在项目目录下

#include "stdlib.h"
#include "string.h"

#ifdef WIN32
//调用时使用这个宏
#define UTEXT(str) GBKToUTF8(str)
#else
#define UTEXT(str) str
#endif
#ifdef WIN32
#include "..\cocos2d-x-3.10\external\win32-specific\icon\include\iconv.h"
static char g_GBKConvUTF8Buf[5000] = { 0 };
const char* GBKToUTF8(const char *strChar)
{
iconv_t iconvH;
iconvH = iconv_open("utf-8", "gb2312");
if (iconvH == 0)
{
return NULL;
}
size_t strLength = strlen(strChar);
size_t outLength = strLength << 2;
size_t copyLength = outLength;
memset(g_GBKConvUTF8Buf, 0, 5000);
char* outbuf = (char*)malloc(outLength);
char* pBuff = outbuf;
memset(outbuf, 0, outLength);
if (-1 == iconv(iconvH, &strChar, &strLength, &outbuf, &outLength))
{
iconv_close(iconvH);
return NULL;
}
memcpy(g_GBKConvUTF8Buf, pBuff, copyLength);
free(pBuff);
iconv_close(iconvH);
return g_GBKConvUTF8Buf;
}
#endif

 

 

2.等到要写中文的时候,先#include "icov.h",然后在有字符串的地方用宏进行强制的转换

UTEXT("蓝鸥科技")

例子

displayValueLabel = Label::createWithSystemFont(UTEXT("蓝鸥科技"), "Marker Felt", 32);

 

3.运行就可以显示正常的中文了

 

以上是关于关于Cocos2d-x中文乱码问题的解决的主要内容,如果未能解决你的问题,请参考以下文章

cocos2d-x 3.0rc1 使用iconv库 解决UTF8乱码问题

关于Mysql中文乱码问题该如何解决(乱码问题完美解决方案)(转)

关于Cocos2d-x 3.0正式版 粒子问题在IOS上正常显示,在Android下有问题的解决方式

关于window.open()中文传值乱码问题的解决方法

关于web.xml中配置Spring字符编码过滤器以解决中文乱码的问题

关于Tomcat控制台乱码解决办法___ 解决 IntelliJ IDEA Tomcat 控制台中文输出乱码问题