复杂的或者不实用的不再说明,只说最直接有效的方法。

方法:将中文字符串写到XML文件中(注意XML文件格式保存为UTF-8),然后解析XML文件,格式可以仿照Android中的strings.xml,而且这种方法能方便以后的国际化。

例:

1:新建XML文件,按照一定的格式,输入相应要显示的中文,最后一定需要使用UTF-8格式保存文件


Hello
你好!
Info
我是hahaya。

2 代码实现


/** 在cocos2d-x中使用中文 **/  

//利用CCDictionary来读取xml  
CCDictionary *strings = CCDictionary::createWithContentsOfFile("strings.xml");  

//读取Hello键中的值 objectForKey根据key,获取对应的string  
const char *hello = ((CCString*)strings->objectForKey("Hello"))->m_sString.c_str();  

//读取Info键中的值  
const char *info = ((CCString*)strings->objectForKey("Info"))->m_sString.c_str();  

//显示  
CCLabelTTF  *labelHello = CCLabelTTF::create(hello, "Arial", 24);  
labelHello->setPosition( ccp(size.width / 2, size.height - 50) );  
this->addChild(labelHello, 1);  

CCLabelTTF *labelInfo = CCLabelTTF::create(info, "Arial", 30);  
labelInfo->setPosition( ccp(size.width / 2, size.height - 100) );  
this->addChild(labelInfo, 1);