码迷,mamicode.com
首页 > 其他好文 > 详细

QT中读取文本数据(txt)

时间:2014-10-13 16:33:39      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

      下面的代码实现读取txt文档中的数据,并且是一行一行的读取。

void MainWindow::on_pushButton_clicked()
{
  QFile file("abcd.txt");
  if(! file.open(QIODevice::ReadOnly|QIODevice::Text))
      qDebug()<<file.errorString();
  else
       qDebug()<<"openok";
  file.seek(0);

  QTextStream shuru(&file);
  while(! shuru.atEnd())
  {
      QString line=shuru.readLine();
      qDebug()<<line;
  }
  file.close();
}

bubuko.com,布布扣

bubuko.com,布布扣

 

上面输出的是字符串格式,可能有时候要用到的是int float这样的格式,程序修改如下:

void MainWindow::on_pushButton_clicked()
{
  int aa;
  int bb;
  int cc;
  char ch;
  float dd;

  QFile file("abcd.txt");
  if(! file.open(QIODevice::ReadOnly|QIODevice::Text))
      qDebug()<<file.errorString();
  else
       qDebug()<<"openok";
  file.seek(0);

  QTextStream shuru(&file);
  while(! shuru.atEnd())
  {
    QString line=shuru.readLine();
    QStringList strlist=line.split(",");
    //for(int i=0;i<strlist.size();i++)
    //{
        //qDebug()<<strlist[i];
        aa=strlist[0].toInt();
        bb=strlist[1].toInt();
        cc=strlist[2].toInt();
        //ch=strlist[3];
        dd=strlist[4].toFloat();
    //}
    qDebug()<<aa;
    qDebug()<<bb;
    qDebug()<<cc;
    //qDebug()<<ch;
    qDebug()<<dd;
  }
  file.close();
}

 bubuko.com,布布扣

QT中读取文本数据(txt)

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/yibanshouxi/p/4022071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!