首页 > 编程语言 > 详细

C++文件读取

时间:2014-10-16 17:19:53      阅读:318      评论:0      收藏:0      [点我收藏+]

#include"stdfx.h"

int main()
{
string strPath = "D:\\TEST\\vs2013Test\\TextQuery\\Beautiful Story.txt";
vector<string> strData;
ifstream sourceFiles(strPath, ios::in);////构造函数内包含open,自动打开
if (!sourceFiles.is_open())
{
cout << "Open Files Failed!" << endl;
sourceFiles.close();
return -1;
}

// 获取文件长度
streamoff i = sourceFiles.tellg();
sourceFiles.seekg(0, ios::end);
streamoff datasNum = sourceFiles.tellg();////tell get 获取输入流的位置 tell put (获取写文件指针)

sourceFiles.seekg(0, 0);
strData.resize(datasNum, "");

 

int dataIndex = 0;
while (!sourceFiles.eof())
{
sourceFiles >> strData[dataIndex];
dataIndex++;
}
sourceFiles.close();


auto pbegin = strData.begin(),pend = strData.end();
while (pbegin !=pend)
{
cout << *pbegin++<<‘ ‘;
}
cout << endl;

return 0;
}

 

#ifndef STDFX_H_H
#define STDFX_H_H

#include<fstream>
#include<iostream>
#include<vector>
#include<string>
using namespace std;

#endif

 

C++文件读取

原文:http://www.cnblogs.com/niupan369/p/4029176.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!