所以我试图通过执行以下操作将QFile转换为QString:
void MainWindow::openTemplateFile(QString location)
{
if (location.isEmpty())
return;
else
{
QString variable;
templateFile.setFileName(location);
if (!templateFile.open(QFile::ReadOnly | QFile::Text))
{
QMessageBox::information(this, "Unable to open template",
templateFile.errorString());
return;
}
else // file opened and ready to read from
{
QTextStream in(&templateFile);
QString fileText = in.readAll();
qDebug() << templateFile.size() << in.readAll();
}
}
}
但是,我在调试控制台中得到以下结果:
48 ""
templateFile确实存在,是MainWindow类的一部分。这也是简化的代码 - 在实际程序中我从文件中读取字符并且它可以正常工作。位置字符串是QFileDialog :: getOpenFileName函数的结果,我用它打开一个txt文件。
答案 0 :(得分:1)
您拨打readAll()
两次。第二次,流定位在文件末尾,因此readAll()
无需读取任何内容并返回空字符串。而是在调试输出中打印fileText
。