unsinged char* 转QString
时间: 2023-05-20 08:05:57 浏览: 441
unsigned char数组转成string 用16进制表示
4星 · 用户满意度95%
您可以使用QString::fromUtf8()函数将unsigned char*转换为QString。例如:
unsigned char* data = ...;
QString str = QString::fromUtf8(reinterpret_cast<const char*>(data));
请注意,这假定您的unsigned char*包含UTF-8编码的数据。如果您的数据使用不同的编码,请使用适当的函数进行转换。
阅读全文