C++文件最基础的操作【IO】

头文件fstream定义了三个类型来支持文件IO:

  • ifstream从一个给定文件读取数据。
  • ofstream向一个给定文件写入数据。
  • fstream可以读写给定文件。
#include <iostream>
#include <string>
#include <sstream>
#include <fstream>
using namespace std;

int main()
{
	ofstream outfile("hello.txt");
	outfile << "this is a file" << endl;
	outfile.close();

	ifstream readfile("hello.txt");
	if (!readfile)
	{
		cerr << "no data ?" << endl;
		return -1;
	}
	string word;
	readfile >> word;
	readfile.close();

	cout << word;
	return 0;
}

在对应的文件夹下可以找到
C++文件最基础的操作【IO】
hello.txt中的内容
C++文件最基础的操作【IO】
程序运行结果
C++文件最基础的操作【IO】

上一篇:Jmeter如何把响应数据的结果,保存到本地文件


下一篇:C++文件输入输出流fstream的用法