QT文件读写操作
Posted wxl845235800
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT文件读写操作相关的知识,希望对你有一定的参考价值。
读取输出:
QFile file("D:/Englishpath/QTprojects/1.dat"); if(!file.open(QIODevice::ReadOnly)) { qDebug()<<"Can‘t open the file!"<<endl; } QTextStream in(&file); while( !in.atEnd()) { QString line = in.readLine(); qDebug() << line; }
或
QFile file("D:/Englishpath/QTprojects/1.dat"); if(!file.open(QIODevice::ReadOnly)) { qDebug()<<"Can‘t open the file!"<<endl; } QTextStream stream(&file); QString line_in; stream.seek(file.size());//将当前读取文件指针移动到文件末尾 int count = 0; while(count < 10) { stream << QObject::trUtf8("新建行:") <<++count<<"/n"; } stream.seek(0);//将当前读取文件指针移动到文件开始 while( !stream.atEnd()) { line_in = stream.readLine(); qDebug() << line_in; }
【转载自】
Qt之文件操作 - liuhongwei123888的专栏 - CSDN博客 https://blog.csdn.net/liuhongwei123888/article/details/6084761
以上是关于QT文件读写操作的主要内容,如果未能解决你的问题,请参考以下文章