引用楼主donby于2011-11-23 21:56发表的 编码阵列转换问题 :
大家好
是这样子的
请问一下该如何把
一整串unicode编码转成Qstring形式?
.......

一整串具体是什么含义?不管你的unicode是utf8/utf16/utf32,QString都有现成解决方案
题外:多看manual:
QString fromUcs4 ( const uint * unicode, int size = -1 )
QString fromUtf8 ( const char * str, int size = -1 )
QString fromUtf16 ( const ushort * unicode, int size = -1 )
QString fromWCharArray ( const wchar_t * string, int size = -1 )