fstream:一行一行的读取文件数据
Posted kanguolaikanguolaik
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fstream:一行一行的读取文件数据相关的知识,希望对你有一定的参考价值。
使用fstream一行行的读取文件数据。 Windows/Linux均测试通过。
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char*argv[])
ifstream read_file;
read_file.open("aaa.txt", ios::binary);
string line;
while(getline(read_file, line))
cout<<"line:"<<line.c_str()<<endl;
return 0;
二、文件与输出结果
2.1 文件:aaa.txt
2.2 输出结果
以上是关于fstream:一行一行的读取文件数据的主要内容,如果未能解决你的问题,请参考以下文章