所以,我在尝试从文件中读取行(逐行)时得到无限循环。我试图使用do{}while();
这样的循环:
QTextStream stream(stdin);
QString line;
do {
line = stream.readLine();
} while (!line.isNull());
但我得到空字符串。
当然,我检查了文件路径(它是正确的)。我试图使用/Users/user/tts.txt
路径但没有更改。我试图读取其他文件(如 m3u)。而且它不适用于 macOS Catalina、Windows 10、Linux (Debian)。
那么,为什么我会得到无限循环?
QStringList Manager::GetLinesFromFile(const QString &nameOfFile)
{
QStringList lines = {};
//path to file
const QString path = QCoreApplication::applicationDirPath() + "/bin/" + "tts.txt";
//"/Users/user/tts.txt"
QFile buffer;
buffer.QFile::setFileName(path);
#ifndef Q_DEBUG
qDebug() << path;
#endif
if(buffer.QFile::exists())
{
if(!buffer.QIODevice::open(QIODevice::ReadOnly))
{
#ifndef Q_DEBUG
qCritical() << "error: can't open file";
#endif
}
else
{
QTextStream stream(&buffer);
// both conditions
// (!stream.QTextStream::atEnd())
while(!buffer.QFileDevice::atEnd())
lines.QList::push_back(stream.QTextStream::readLine());
buffer.QFile::close();
}
}
else
{
#ifndef Q_DEBUG
qCritical() << "error: file not exists";
#endif
}
return lines;
}