ファイルを読み取って Qstring に入れたいのですが、ファイルが読み取られません Google で多くのサンプルを検索しましたが、機能しません... ファイルを読み取りたい...
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();
}
見せてください: !read
私はあなたが考えることができるすべてを含めました.file.txtは本当の場所にあります??!! :-(