C++文件操作——按行读取txt文本文件

我们经常在一些项目中需要处理文本文件的读取,比如按行进行文本读取操作

下面分别介绍按行读取文本的一些方法:

(1).采用C语言中的fgets函数

USES_CONVERSION;  
//调用函数,T2A和W2A均支持ATL和MFC中的字符转换  
char * pLogPath = T2A(fileDlg.GetPathName());  
FILE *fp = fopen(pLogPath, "r");  
if(NULL == fp)  
{  
     AfxMessageBox(L"failed to open txt\n");  
     return;
}  
vector<string> v_str;
string strShow;
while(!feof(fp))  
{  
    char szLineBuffer[MAX_PATH]="";
    fgets(szLineBuffer, sizeof(szLineBuffer)-1, fp); // 包含了\n  
    v_str.push_back(szLineBuffer); 
    strShow += szLineBuffer;
    strShow += "\r\n";
    USES_CONVERSION; 
    CString cstrShow(strShow.c_str());  
    m_CtrlEditRead.SetWindowText(cstrShow);
} 
fclose(fp);  
(2).C++中ifstream流getline函数获取

USES_CONVERSION;  
//调用函数,T2A和W2A均支持ATL和MFC中的字符转换  
char * pLogPath = T2A(fileDlg.GetPathName()); 
ifstream inFile(pLogPath);
vector<string> v_str;
string strShow;
if (inFile)
{
    string strLine;
    while(getline(inFile, strLine)) // line中不包括每行的换行符  
   {   
      v_str.push_back(strLine);
      strShow += strLine;
      strShow += "\r\n";
      USES_CONVERSION; 
      CString cstrShow(strShow.c_str());  
      m_CtrlEditRead.SetWindowText(cstrShow);
   }  
}
(3).MFC中CStdioFile类ReadString按行读取

vector<CString> v_cstr;
CStdioFile file;
if (file.Open(fileDlg.GetPathName(), CFile::typeText | CFile::modeRead))
{
	CString str;
	// 处理UNICODE下【中文乱码】异常
	char * pOldLocale = _strdup(setlocale(LC_CTYPE, NULL));
	setlocale(LC_CTYPE, "chs");
	CString strShow;
	while (file.ReadString(str))
	{
		v_cstr.push_back(str);
		strShow += str;
		strShow += "\r\n";
		m_CtrlEditRead.SetWindowText(strShow);
		str.Empty();
	}
	// 处理完毕后,释放资源
	setlocale(LC_CTYPE, pOldLocale);
	free(pOldLocale);
}
file.Close();

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值