QT编程中,为什么用lable控件显示资源文件中的.txt文本,在界面上显示不了中文,汉字都变成了代码!!

英文字母和数字都可以正常显示... 英文字母和数字都可以正常显示 展开
 我来答
百度网友d83e33e
2011-11-24 · TA获得超过1170个赞
知道小有建树答主
回答量:164
采纳率:100%
帮助的人:186万
展开全部
需要进行中文转换
引入头文件: #include <QTextCodec>
在需要使用中的地方:
QTextCodec::setCodecForTr(QTextCodec::codecForName("gb2312"));
然后把中文写在tr中即可。
eg: lineEdit->setText(tr("你好!"));
追问
#include "mysd.h"
#include "ui_mysd.h"
#include
#include

mysd::mysd(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::mysd)
{
ui->setupUi(this);
QFile fp(":/1.txt");
if(fp.open(QFile::ReadOnly))
{
QString str;
str=fp.readAll();
ui->mylab->setText(str);
fp.close();
}
}
怎么改呢?
追答
#include  

mysd::mysd(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::mysd)
{
ui->setupUi(this);
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("gb2312"));
QFile fp(":/1.txt");
if(fp.open(QFile::ReadOnly))
{
QString str;
str=fp.readAll();
ui->mylab->setText(str);
fp.close();
}
}
大不为名姓名436
2011-11-24 · TA获得超过6.1万个赞
知道大有可为答主
回答量:3.1万
采纳率:0%
帮助的人:2089万
展开全部
不机都
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式