I'm using QT to develop my C++ application using QML as well.

Here's my code

QFile inputFile("data.txt");
//QFile inputFile("/:data.txt");
qDebug() << "Hello:";
if (!inputFile.open(QIODevice::ReadOnly | QIODevice::Text))
{
    qDebug() << "Wasn't ready:";
}
else{
    qDebug() << "Txt file ready:";
    QTextStream in(&inputFile);
    while ( !in.atEnd() )
    {
        QString line = in.readLine();
        qDebug() << "message: " << line;
    }
}

I was wondering why it doesnt work. The console always prints "Wasn't ready". Please help :(

link|improve this question
2  
Is there a file called data.txt that is readable in the current directory of your executable? – Mat Aug 7 '11 at 11:02
feedback

1 Answer

In the error handling block where you do qDebug() << "Wasn't ready:"; you should call inputFile.error() and print out the returned value to get more details of what went wrong.

It might also be an idea to start the program with printing out the current directory, to make sure that the file is searched for in the correct location.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.