我想读取一个文件并将它放在一个 Qstring 中,但该文件没有被读取我已经在谷歌中搜索了许多示例,但它不起作用......我想读取文件......
using namespace std;
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QFile in1("file.txt");
QTextStream in(&in1);
if (in1.open(QFile::ReadOnly | QFile::Text))
{
QLabel *label = new QLabel("read");
label->show();
}
if (!in1.open(QFile::ReadOnly | QFile::Text))
{
QLabel *label = new QLabel("!read");
label->show();
}
QString s1;
in >> s1;
QLabel *label = new QLabel(s1);
label->show();
return app.exec();
}
给我看:!读
我包含了您能想到的所有内容,并且 file.txt 位于真实位置??!!:-(