写一个qt读取txt文件中字符串的程序
时间: 2024-05-12 17:16:14 浏览: 102
python读取txt文件中特定位置字符的方法
好的,我可以帮你写一个读取txt文件中字符串的程序。以下是程序的代码:
```cpp
#include <QtWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QFile file("file.txt");
if(!file.exists())
{
qDebug() << "File does not exist!";
return 0;
}
if(!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
qDebug() << "Failed to open file!";
return 0;
}
QTextStream in(&file);
while(!in.atEnd())
{
QString line = in.readLine();
qDebug() << line;
}
file.close();
return app.exec();
}
```
这个程序可以读取名为file.txt的文件中的字符串,并将其打印出来。如果文件不存在,程序会提示“File does not exist!”;如果文件打开失败,程序会提示“Failed to open file!”。
阅读全文