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:一行一行的读取文件数据的主要内容,如果未能解决你的问题,请参考以下文章

C++怎么在txt文件读取中一行一行的读内容

C++文件流的C++ 中 *fstream 操作

请问一下 怎么用c语言实现读取一个txt文件里的数据 要按行读出来

c++快速读取配置文件

C ++从文本文件中读取行并编辑

fortran读取一行数据