Symbian 中文字符串显示问题的解决
2010-03-12 04:34:00 来源:WEB开发网核心提示:#elseres.Format(_L8(”wayne chen %s”), original) ;#endif}具体的使用方法:TBuf8<20> title8 ;TBuf<20> title16 ;TBuf8<20> msg8 ;TBuf<20> msg16 ;titl
#else
res.Format(_L8(”wayne chen %s”), original) ;
#endif
}
具体的使用方法:
TBuf8<20> title8 ;
TBuf<20> title16 ;
TBuf8<20> msg8 ;
TBuf<20> msg16 ;
title8.Format(_L8(”友情提示”)) ;
ConvGbk2Uni(title8, title16) ;
msg8.Format(_L8(” 谢谢您的使用”)) ;
ConvGbk2Uni(msg8, msg16) ;
ShowInfoDialog(title16, msg16) ;
即可,现在title16和msg16里面都存放的是16位的unicode中文字符串了,
可以直接显示了。
[]
更多精彩
赞助商链接