|
发表于 2009-7-22 11:37:59
|
显示全部楼层
简单来说,如果字符串用MultiChar来保存的话,就转换到WideChar;否则的话直接用就好:
char* text = ...;
int requiredSize = mbstowcs( NULL, text, 0 );
wchar_t* wtext = new wchar_t[requiredSize+1];
mbstowcs( wtext, text, requiredSize+1 );
textDrawable->setText( wtext );
有关mbstowcs参看MSDN好了 |
|