欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Qt每天一例】1.按行读取文件并打印

程序员文章站 2022-05-18 14:16:34
...

需求:按行读取文件,并打印

void demo()
{
    QFile file;
	file.setFileName("c:/1.txt");
	if(file.open(QIODevice::ReadOnly | QIODevice::Text))
	{
	  QByteArray t ;
	  while(!file.atEnd())
	  {
	      qDebug()<<file.readLine();
	  }
	  file.close();
	}
}