qt 读取txt文件内容并保存到数组中

时间:2023-01-25 23:23:01

首先打开txt文件

通过QTextStream读取文件内容

由于我的数据量比较小,

所以全部读取后用split分隔,

再用append一个个存到数组中。

      QFile file(filename);

   QVector<float> array;
   if(file.open(QIODevice::ReadOnly))
   {
       QTextStream stream(&file);
       while(!file.atEnd())
       {
           float buf;
           QStringList list=stream.readAll().split(" ");
           QListIterator<QString> li(list);
           while(li.hasNext())
           {
              buf=li.next().toFloat();
              array.append(buf);
           }
       }