我是新手。我正在努力从 QT 中的文件中检索特定行。到目前为止我已经完成了,但不知道如何使用 qbytearray 进行访问。
void Model::viewFile(const char* name1)
{
QString name = QString::fromStdString(name1);
QByteArray fileData;
QFile file("C:\\Qt-Development\\TestApps\\Project1\\Property.txt"); //openin my file
if(file.open(QIODevice::ReadOnly))
{
fileData=file.readAll();
int len= fileData.length();
//here I want to serach for the particular word in the file which is in my qbytearray
}
}