C++经典问题_15 文件操作

一. 文件分类

① 文本文件

文件以文本的ASCII码形式存储在计算机中

② 二进制文件

文件以文本的二进制的形式存储在计算机中,用户一般不能直接读懂它们.存放的都是0和1这些二进制数

二. 操作文件的三大类:

① ofstream
  1. 写操作 o-> out的意思, out针对的是内存,从内存输出到文件,所以是写操作.
  2. 继承自ostream
② ifstream
  1. 读操作 i-> in的意思,in针对的是内存,从文件到内存,所以是读操作
  2. 继承自istream
③ fstream
  1. out and in 读写操作
  2. 继承自 iostream

三. 写文件的操作步骤

① 写文件的步骤
  1. 包含头文件 #include <fstream>
  2. 创建流对象 ofstream ofs ; 写是从内存输出到文件
  3. 打开文件 ofs.open("文件路径",打开方式)
  4. 写数据,往输出流中写入数据 ofs << "写入的数据;"
  5. 关闭文件 ofs.close();
② 文件打开的方式
打开方式解释
ios::in以只读的方式打开文件
ios::out以只写的方式打开文件
ios::ate初始位置: 文件末尾
ios::app追加的方式写文件
ios::trunc如果文件存在先删除,再创建
ios::binary二进制方式

注意:

文件的打开方式可以配合使用,利用|操作符
例如: 用二进制方式写文件 ios::binary | ios::out

③ 文本方式写文件的例子
/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/
#include <iostream>
#include <fstream> 
using namespace std;
// 文件流操作必须包含fstream这个头文件
// 文件操作的三大类:
// 1. ofstream: 写操作 这个out是针对的内存,从内存输出,然后到文件,从内存输出到文件,所以是写
// 2. ifstream: 读操作 这个in是针对的内存,从输入到内存,所以是读
// 3. fstream: 读写操作

void write_test_01()
{
	// 1. 包含头文件
	// 2. 创建流对象
	ofstream ofs;
	// 3. 指定方式打开文件
	ofs.open("test.txt", ios::out);
	// 4. 写入内容
	ofs << "姓名: 张三" << endl; // endl 可以看成是一个换行符
	ofs << "性别: 男\n";
	ofs << "年龄: 18" << endl;

}
int main()
{
	write_test_01();
	system("pause");
	return 0;
}

结果:

四. 读文件的操作

① 读文件的步骤
  1. 包含头文件 #include<fstream>
  2. 创建流对象 ifstream 输入流,输入到内存
  3. 打开文件并判断文件是否打开成功 ifs.open("文件路径",打开方式)
  4. 读取数据
  5. 关闭文件
② 读取文件的例子

读取文件到一个字符数组里面,有一个问题,就是遇到空格,换行符,或者是制表符会返回.

/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

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

// 文本文件, 读文件
void read_file_test(void)
{
	// 1. 包含头文件
	// 2. 创建流对象
	ifstream ifs;
	// 3. 打开文件,并且判断是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败!" << endl;
	}
	// 4. 读数据,以输入到buf的方式读数据
	char buf[1024] = { 0 };
	// 这里 ifs >> buf,在遇到空格,或者换行,或者是制表符的时候,会自动返回
	while (ifs >> buf)
	{
		cout << buf << endl;
	}

	// 5. 关闭文件
	ifs.close();
}
int main()
{

	read_file_test();
	system("pause");
	return 0;
}

文件的内容:
在这里插入图片描述
程序运行的结果:

读取到buf中,使用ifstream里面的getline()函数,遇到换行符会返回

/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

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

void read_file_test(void)
{
	// 1. 包含头文件
	// 2. 创建文件输入流
	fstream ifs;
	// 3. 打开文件,判断文件是否存在
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件不存在,打开失败!" << endl;
	}
	// 4. 使用一行一行读取的方式读取文件
	char buf[1024] = { 0 };
	while (ifs.getline(buf,sizeof(buf)))
	{
		cout << buf << endl;
	}

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

int main()
{
	read_file_test();

	system("pause");
	return 0;
}

结果:

将数据读入到string中,使用全局的getline函数,需要输入流.也是一行一行的方式读取出来

/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

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

void read_file_test(void)
{
	// 1. 包含头文件

	// 2. 创建输入流
	ifstream ifs;
	// 3. 打开文件,并判断文件是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
	}
	// 4. 以string和geline的方式读取数据
	string buf;
	while (getline(ifs, buf))
	{
		cout << buf << endl;
	}
	// 5. 关闭文件
	ifs.close();
}


int main()
{

	read_file_test();
	system("pause");
	return 0;
}

结果:

一个字符一个字符的读取,判断是否读取到文件尾, EOF 代表文件的尾部

/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

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

void read_file_test(void)
{
	// 1. 包含头文件
	// 2. 创建输入流
	ifstream ifs;
	// 3. 打开文件并判断文件是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败!" << endl;
		return;
	}
	// 4. 读取数据,使用get()的方式,根据EOF判断是否是文件末尾
	char c;
	while ((c = ifs.get()) != EOF)
	{
		cout << c;
	}

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

int main()
{
	read_file_test();

	system("pause");
	return 0;
}

注意,这里会把所有的字符读取出来,包括换行符,空格和制表符,但是这种效率太低,一般不建议使用!

五. 二进制写文件

  1. 二进制写文件主要利用流对象调用成员函数write
  2. 原型: ostream& write(const char* buffer,int len)
  3. 参数解释: 字符指针buffer指向内存中一段存储空间.len是读写的字节数
/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

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

class Person
{
public:
	char mName[64];
	int mAge;
};

void write_file_binary_test(void)
{
	Person p = { "张三",18 }; // 创建一个Person对象
	// 写二进制文件的步骤
	// 1. 包含头文件
	// 2. 创建输出流
	ofstream ofs;
	// 3. 打开文件
	ofs.open("person.txt", ios::out | ios::binary);
	// 4. 写入内容
	ofs.write((const char *)&p, sizeof(p));
	// 5. 关闭文件
	ofs.close();
}

int main()
{

	write_file_binary_test();
	system("pause");
	return 0;
}

六. 二进制读文件

  1. 二进制方式读取文件主要利用流对象调用成员函数read
  2. 原型: isttream& read(char* buffer,int len)
  3. 字符指针buffer指向内存中的一段存储空间.len是读写的字节数
/*----------------------------------------------------------------
* 项目: Classical Question
* 作者: Fioman
* 邮箱: geym@hengdingzhineng.com
* 时间: 2022/3/22
* 格言: Talk is cheap,show me the code ^_^
//----------------------------------------------------------------*/

#include <iostream>
#include <fstream>
using namespace std;
class Person
{
public:
	char mName[64];
	int mAge;
};

void read_file_binary_test(void)
{
	// 1. 包含头文件

	// 2. 创建输入流对象
	ifstream ifs;
	// 3. 打开文件,并判断文件是否打开成功
	ifs.open("person.txt", ios::in | ios::binary);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}
	// 4. 读取文件内容
	Person p;
	ifs.read((char *)&p, sizeof(Person));
	cout << "姓名: " << p.mName << " 年龄: " << p.mAge << endl;
	// 5. 关闭文件
	ifs.close();
}

int main()
{

	read_file_binary_test();
	system("pause");
	return 0;
}
  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值