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

读文件

时间:2015-06-10 23:58:50      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

#include   <iostream>
#include   <string>

using   namespace   std; 

int main(int argc, _TCHAR* argv[])
{
	FILE* pfile = fopen("D:\\origin.txt", "rb");
	if (!pfile)   return false;
	fseek(pfile, 2, 0);

	wchar_t buf[1024];
	wstring line;
	wstring newl = L"\x000D\x000A";

	while (!feof(pfile)) {   
		fgetws(buf, 1024, pfile);
		line = buf;
		if(line.find(newl)!=wstring::npos)   line = line.substr(0, line.find(newl));
	}
	fclose(pfile);
}

 

读文件

标签:

原文地址:http://www.cnblogs.com/chunyou128/p/4567734.html

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