Qt 讀檔,讀取 txt 文字檔

本篇要介紹如何使用 Qt 的 QTextStream 來讀取 txt 文字檔,讀檔且每次迴圈將讀取的文字印出來。

範例. 讀取 txt 文字檔

在 QFile 建構子帶入檔案路徑,一開始先使用 QFile.open() 開檔,之後再用 QTextStream 讀取文字資料,
另外補充如果是要讀取二進制資料要使用 QDataStream,處理檔案資訊可以使用 QFileInfo,處理目錄則使用 QDir,
之後就使用 readLine 逐行讀取並且用 qDebug 印出來,
最後別忘了使用 QFile.close() 關檔,這樣就完成了簡單的文字檔讀取的功能囉!

qt-txt-read.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// qmake -project "QT += widgets" && qmake && make
#include <QApplication>
#include <QDebug>
#include <QString>
#include <QFile>
#include <QTextStream>

void readFile(const QString &fileName)
{
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
qDebug() << "Cannot open file for reading:" << qPrintable(file.errorString());
return;
}

QTextStream in(&file);
while (!in.atEnd())
{
QString fileLine = in.readLine();
qDebug() << fileLine;
}
file.close();
}

int main(int argc, char *argv[])
{
QApplication app(argc, argv);

readFile("text.txt");

return 0;
}

範例. 使用開啟檔案對話框選擇 txt 文字檔來讀取

這邊使用 QFileDialog 檔案對話框來方便選擇文字檔來讀取。

qt-txt-read-filedialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// qmake -project "QT += widgets" && qmake && make
#include <QApplication>
#include <QDebug>
#include <QFileDialog>
#include <QString>
#include <QFile>
#include <QTextStream>

void readFile()
{
QString fileName = QFileDialog::getOpenFileName(NULL, QObject::tr("Text file"),
qApp->applicationDirPath(), QObject::tr("Files (*.txt)"));
QFile file(fileName);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
qDebug() << "Cannot open file for reading:" << qPrintable(file.errorString());
return;
}

QTextStream in(&file);
while (!in.atEnd())
{
QString fileLine = in.readLine();
qDebug() << fileLine;
}
file.close();
}

int main(int argc, char *argv[])
{
QApplication app(argc, argv);

readFile();

return 0;
}

其它相關文章推薦
如果需要使用 QTextStream 寫入文字資料進檔案請參考這篇
安裝 Qt 在 Windows 7 (使用MSVC)
Qt產生的exe發布方式
Qt 新增多國語言.ts翻譯檔案
Qt5的中文亂碼問題如何解決