0

之后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();
    }
4

2 回答 2

1

所以,你需要(反)序列化

试着把它做对。这是官方文档: http: //qt-project.org/doc/qt-4.8/datastreamformat.html 这是示例:使用 Qt 进行序列化

于 2013-05-26T18:13:33.010 回答
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
于 2013-05-26T22:21:59.127 回答