本文介绍了将QString转换为Local8bit然后将转换字符串转换为QString的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何转换为local8bit然后转换字符串为QString:
How can i convert this to local8bit then converted string to QString:
QString m = QString::FromStdString("Ú©Ù?Ù?ات Ù?رتبط(0):<BR> <BR><HR><BR><BR><A href='bword://0'>بازگشت بÙ? Ù?اÚ?Ù? 0</A></B><BR><BR><HR><BR><A href='bword://latitude (l,0)'>latitude (l,0)</A> <BR> <B><A href='bword://logical 0 state'>logical 0 state</A> </B><BR><BR><HR> 0 ");code here
推荐答案
如果我理解正确你正在寻找以下函数:
If I understand correctly you are looking for the following functions:
std::string str = m.toLocal8Bit().data();
,反之亦然
QString m = QString::fromLocal8Bit("SomeText in Local");
这篇关于将QString转换为Local8bit然后将转换字符串转换为QString的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!