10
void FindWords::getTextFile() {
    QFile myFile(":/FindingWords2.txt");
    myFile.open(QIODevice::ReadOnly);

    QTextStream textStream(&myFile);
    QString line = textStream.readAll();
    myFile.close();

    ui->textEdit->setPlainText(line);
    QTextCursor textCursor = ui->textEdit->textCursor();
    textCursor.movePosition(QTextCursor::Start, QTextCursor::MoveAnchor, 1);
}

一直给我错误,QTextStream textStream(&myFile)我无法修复它。

4

2 回答 2

24

你忘了包括<QTextStream>or <QFile>

于 2013-06-15T10:57:05.980 回答
2

我添加了

#include <QTextStream>
#include <QFile>
#include <QDataStream>

它对我有用。

于 2018-05-19T02:49:41.270 回答