QString转wchar_t*

Posted 敲代码的Messi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QString转wchar_t*相关的知识,希望对你有一定的参考价值。

方法1:

file = filename.toStdWString();

const wchar_t* str1 = file.c_str();

Returns a std::wstring object with the data contained in this QString. The std::wstring is encoded in utf16 on platforms where wchar_t is 2 bytes wide (e.g. windows) and in ucs4 on platforms where wchar_t is 4 bytes wide (most Unix systems).

这是最朴素的想法。也是最好使用的办法。很奇怪的是,我前几次测试,却是debug看到了乱码,我也不确定是否是改动了其他宏或者build参数导致的。不过,后来的测试表明,这种方式才是正确的方式,可能存在的问题最小。

方法2:

wchar_t str2[256] = 0;

auto xxx = filename.toWCharArray(str2);

这种方法是查询QString 文档而知的。但是,这种方式要谨慎,若不对数组str2 初始化,debug可以看到字符串最后会多出来一两个字符,完全随机的。还要注意数组长度。

方法3:

const wchar_t * encodedName = reinterpret_cast<const wchar_t *>(filename.utf16());

虽然这种方法也能工作,但是需要注意。这里用到了强转,reinterpret_cast 表达式不会编译成任何 CPU 指令,它纯粹是一个编译时指令,指示编译器将 表达式 视为如同具有 新类型 类型一样处理。亦即,与C写法,(const wchar_t *)ptr 并没有什么不同。

其实,最重要的,我们还是需要知道 OS 使用的编码方式。

C:\\Users\\kt>chcp

活动代码页: 936

这就是 GB2312 了。每个汉字及符号以两个字节来表示。

Fills the array with the data contained in this QString object. The array is encoded in utf16 on platforms where wchar_t is 2 bytes wide (e.g. windows) and in ucs4 on platforms where wchar_t is 4 bytes wide (most Unix systems).

所以,方法3,只能在windows上使用,在Linux上,还需要注意。

至于从wchar_t* 转换为QString的方式,直接参看QString的接口,上述1、3方法对应的接口有fromStdWString、fromUtf16,应该可以解决问题。
原文

以上是关于QString转wchar_t*的主要内容,如果未能解决你的问题,请参考以下文章

char 转wchar_t 及wchar_t转char

CString 如何转为wchar_t

C++中char和wchar_t转换

Qt char * 转QString

QT QString转char*,char*转QString;简单明了,看代码。

Qt下 QString转char*(转)