QTextStream :: readLine():返回值无效

时间:2013-12-17 15:10:08

标签: c++ qt qfile qtcore

我正在尝试使用此代码读取文件:

const char *imageFile = repertoire_Hu.filePath(img_files_Hu[i]).toStdString().c_str();
QFile f(imageFile);
QTextStream out(&f);
float tab2[7];
int q = 0;
if(f.open(QIODevice::ReadOnly | QIODevice::Text))
{
    while(!out.atEnd())
    {
        QString line = out.readLine();
        tab2[q] = line.toFloat();
        q ++;
    }
}
f.close();

这是我文件的内容


-1557.35

0.659662

-2.65505

5.43287e-23

5.4945e-34

-5.65088e-35

-1.35751e+38

但是当我在读取文件后绘制值时,我得到了错误的值(与我们比较它们时文件中的值完全不同),有时文件无法打开,大部分时间都没有读取文件中的所有值。

我想我在某处做错了但我无法理解。

2 个答案:

答案 0 :(得分:1)

确保中间没有空行,行末尾没有任何不想要的空格。从您的数据文件中复制/粘贴后,您似乎已经全身心投入。

这对我来说非常好:

data.txt中

-1557.35
0.659662
-2.65505
5.43287e-23
5.4945e-34
-5.65088e-35
-1.35751e+38

的main.cpp

#include <QtCore/QFile>
#include <QtCore/QTextStream>
#include <QtCore/QString>
#include <QtCore/QDebug>

int main()
{

    QFile f("data.txt");
    QTextStream out(&f);
    float tab2[7];
    int q = 0;
    if(f.open(QIODevice::ReadOnly | QIODevice::Text))
    {
        while(!out.atEnd())
        {
            QString line = out.readLine();
            tab2[q] = line.toFloat();
            qDebug() << "LINE:" << tab2[q];
            q ++;
        }
    }
    f.close();

    return 0;
}

输出

g++ -Wall -fPIC -I/usr/include/qt/QtCore -I/usr/include -I/usr/include/qt -lQt5Core main.cpp && ./a.out

LINE: "-1557.35"                                                                                     LINE: "0.659662"                                                                                 
LINE: "-2.65505"                                                                                 
LINE: "5.43287e-23"                                                                              
LINE: "5.4945e-34"                                                                               
LINE: "-5.65088e-35"                                                                             
LINE: "-1.35751e+38"

答案 1 :(得分:0)

我没有发现任何错误,所以你需要做更多的调试。这应该可以帮助您找到问题:

while(!out.atEnd())
{
    QString line = out.readLine();
    bool ok = false;
    qDebug() << "Line index" << q << "contents:" << line;        
    float value = line.toFloat(&ok);
    if (ok) {
        qDebug() << "Parsing succeeded:" << tab2[q];
        tab2[q] = value;
        ++q;
    } else {
        qDebug() << "Parsing failed, skipping line!";
        // or break, or whatever you want to do
    }
}