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

qt读取文本

时间:2016-09-19 07:51:58      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

直接 代码:

技术分享
 1 // lyy : 2016/8/26 16:40:11 说明:读取文本
 2 bool FileOpeartion:: GetTheTextContent (const QString strPath,  QStringList &strContent)
 3 {
 4     QFile file (strPath);
 5     
 6     if (file.open (QIODevice::ReadOnly | QIODevice::Text))
 7     {
 8         QTextStream in (&file);
 9         //in.setCodec (QTextCodec::codecForName ("GB2312"));
10         QString line;
11         
12         while (!in.atEnd())
13         {
14             line = in.readLine();
15             
16             if (!line.isNull() && !line.isEmpty())
17             {
18                 strContent << line;
19             }
20         }
21         
22         file.close();
23     }
24     
25     return true;
26 }
View Code

 

qt读取文本

标签:

原文地址:http://www.cnblogs.com/billly/p/5883775.html

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