C++ 中的文件读写

  • 所有的读写操作五板斧:
  • 1、包含头文件
  • 2、创建流对象
  • 3、通过流对象指定打开方式
  • 4、读写内容
  • 5、关闭文件

字符模式读写文件:

写文件

  • 1、包含头文件
  • 2、创建流对象 ofstream ofs;
  • 3、通过流对象指定打开方式:ofs.open(“test.txt”, ios::out);
  • 4、写内容:ofs << “姓名:张三”<< endl;
  • 5、关闭文件: ofs.close();
    具体操作如下:
#include<iostream>
using namespace std;
#include<fstream>
#include <string>

int main()
{
	//1.包含头文件

	//2.创建流对象
	ofstream ofs;

	//3.指定打开方式
	ofs.open("test.txt", ios::out);

	//4.写内容
	ofs << "姓名:张三" << endl;
	ofs << "性别:男" << endl;

	//5.关闭文件
	ofs.close(); 
}

读文件

  • 1、包含头文件
  • 2、创建流对象 ifstream ifs;
  • 3、通过流对象指定打开方式
ifs.open("test.txt", ios::in);
//判断是否打开成功
if (!ifs.is_open())
{
	cout << "文件打开失败" << endl;
	return 0;
}
  • 4、读取内容的四种方式

单个字符:

char buf[1024] = { 0 };
while (ifs >> buf)
{
	cout << buf << endl;
}

整行字符:

char buf[1024] = { 0 };
while (ifs.getline(buf, sizeof(buf)))
{
	cout << buf << endl;
}

string类型整行读取:

string buf;
while (getline(ifs, buf))
{
	cout << buf << endl;
}

C语言风格单个字符读取:

char c;
while ((c = ifs.get()) != EOF)
{
	cout << c;
}
  • 5、关闭文件: ifs.close();

二进制读写文件

写文件

  • 1、包含头文件

  • 2、创建流对象 ofstream ofs;

  • 3、通过流对象指定打开方式:ofs.open(“test.txt”,ios::binary | ios::out);(这里必须同时包含二进制打开方式(binary)和输出模式(out))。
    注:因为有内部构造函数,所以上面两个步骤可合二为一:
    ofstream ofs(“test.txt”, ios::binary | ios::out);

  • 4、写内容:Base p = { 23, “gzy” };
    ofs.write((const char*)&p, sizeof(Base));
    注:这里的Base p 是一个类实例化的对象,它包含int age 和 char name[] 两个属性,二进制写的操作实际是将目标内容 逐位写入 目标文件,所以需要传入写入位置的指针,和需要写入的字节大小。

  • 5、关闭文件: ofs.close();

class Base
{
public:
	int age;
	char name[1024];
};

int main()
{
	ofstream ofs;
	ofs.open("text.txt", ios::binary | ios::out);
	//有构造函数,可以写 ofstream ofs("text.txt", ios::binary | ios::out);
	Base p = { 23, "振远" };
	ofs.write((const char*)&p, sizeof(Base));
	ofs.close();
}

读文件

  • 1、包含头文件
  • 2、创建流对象 :ifstream ifs;
  • 3、通过流对象指定打开方式
ifs.open("text.txt", ios::binary | ios::in);
if (!ifs.is_open())
{
	return 0;
}
  • 4、读写内容
Base p1;
ifs.read((char*)&p1, sizeof(Base));
cout << p1.age << p1.name << endl;
  • 5、关闭文件 ifs.close();
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

KamikazePilot

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值