如何将 txt 文件中的值插入 Qlist 并使用 QTablewideget

how to can insert the value from txt file to the Qlist and work with QTablewideget

如何将 txt 文件中的值插入到 Qlist 中...

    QList<QString> list_StRead;
    list_StRead.insert();

我可以对 txt 文件进行排序... 这意味着我的文件是一行一行的...... 比插入 Qlist 后我想写入 Qtabelewidget ... 我该怎么办?? 你必须完全理解..看img文件.. enter image description here

所有人的tnx....

#include <QStringList>
#include <QFile>
#include <QTextStream>

int main(void)
{
  QFile data("data.txt");
  QTextStream stream(&data);
  QStringList strings(stream.readAll().split("\n")); // or another split character
}