Qt 寫檔,寫入 txt 文字檔

本篇要介紹如何使用 Qt 的 QTextStream 來寫入 txt 文字檔。

範例. 寫入 txt 文字檔

在 QFile 建構子帶入檔案路徑,一開始先使用 QFile.open() 開檔,之後用 QTextStream 寫文字資料到檔案,
最後記得要用 QFile.close() 關檔。

qt-txt-write.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
// qmake -project "QT += widgets" && qmake && make
#include <QApplication>
#include <QDebug>
#include <QString>
#include <QFile>
#include <QTextStream>

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

QTextStream out(&file);
out << QObject::tr("123") << "\n";
QString str("456");
out << str << "\n";

file.close();
}

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

writeFile("output.txt");

return 0;
}

範例. 使用開啟檔案對話框選擇 txt 文字檔來寫入儲存

qt-txt-write-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 writeFile()
{
QString fileName = QFileDialog::getSaveFileName(NULL, QObject::tr("Text file"),
qApp->applicationDirPath(), QObject::tr("Files (*.txt)"));

QFile file(fileName);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
{
qDebug() << "Cannot open file for writing:" << qPrintable(file.errorString());
return;
}

QTextStream out(&file);
out << QObject::tr("123") << "\n";
QString str("456");
out << str << "\n";

file.close();
}

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

writeFile();

return 0;
}

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