在readLine()
之后,如何将光标位置设置为一行的开始?
使用seek()
和pos()
对我无效。
以下是我的file.txt的样子:
Object1 Some-name 2 3.40 1.50
Object2 Some-name 2 3.40 1.50 3.25
Object3 Some-name 2 3.40 1.50
这是我的代码:
QFile file("file.txt");
if(file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream stream(&file);
while(!stream.atEnd()) {
qint64 posBefore = file.pos();
QString line = stream.readLine();
QStringList splitline = line.split(" ");
if(splitline.at(0) == "Object1") {
stream.seek(posBefore);
object1 tmp;
stream >> tmp;
tab.push_back(tmp);
}
if(splitline.at(0) == "Object2") {
stream.seek(posBefore);
object2 tmp;
stream >> tmp;
tab.push_back(tmp);
}
if(splitline.at(0) == "Object3") {
stream.seek(posBefore);
object3 tmp;
stream >> tmp;
tab.push_back(tmp);
}
}
file.close();
}
答案 0 :(得分:1)
因此,您需要(反)序列化。
尽量做到对。 以下是官方文档:http://qt-project.org/doc/qt-4.8/datastreamformat.html 以下是示例:Serialization with Qt
答案 1 :(得分:0)
我为您制作了一个简单的控制台应用程序。所有你需要做的就是用一个好的旧QString::split()
空格来获取你想要的行中的第一个元素,我是通过QString::section()
方法完成的。
这里是 main.cpp 的代码:
#include <QtCore/QCoreApplication>
#include <QFile>
#include <QStringList>
#include <QDebug>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QFile f("file.txt");
f.open(QIODevice::ReadOnly);
// next line reads all file, splits it by newline character and iterates through it
foreach (QString i,QString(f.readAll()).split(QRegExp("[\r\n]"),QString::SkipEmptyParts)){
QString name=i.section(" ",0,0);
// we take first section of string from the file, all strings are stored in "i" variable
qDebug()<<"read new object - "<<name;
}
f.close();
return a.exec();
}
文件file.txt与可执行文件位于同一目录中,是文件的副本:
Object1 Some-name 2 3.40 1.50
Object2 Some-name 2 3.40 1.50 3.25
Object3 Some-name 2 3.40 1.50