4、文件操作

基础概念

程序运行时产生的数据都属于临时数据,程序一旦运行结束都会被释放

通过文件可以将数据持久化

C++中对文件操作需要包含头文件 <fstream>

文件类型分为两种:

  1. 文本文件:文件以文本的ASCII码形式存储在计算机中
  2. 二进制文件:文件以文本的二进制形式存储在计算机中,用户一般不能直接读懂它们

操作文件的三大类:

  1. ofstream:写操作
  2. ifstream: 读操作
  3. fstream : 读写操作

文件的打开方式

打开方式 解释
ios::in 为读文件而打开文件
ios::out 为写文件而打开文件
ios::ate 初始位置:文件尾
ios::app 追加方式写文件
ios::trunc 如果文件存在先删除,再创建
ios::binary 二进制方式

注意: 文件打开方式可以配合使用,利用|操作符

例如:用二进制方式写文件 ios::binary | ios:: out

文本文件

写文件

写文件步骤如下:

  1. 包含头文件:#include <fstream\>

  2. 创建流对象:ofstream ofs;

  3. 打开文件:ofs.open("文件路径",打开方式);

  4. 写数据:ofs << "写入的数据";

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

例子:

#include<iostream>
//1、添加文件操作头文件
#include<fstream>

using namespace std;

int main() {
	//2、创建输出流对象对象
	ofstream ofs;
	//3、打开文件text.txt,文件默认创建在项目根目录,指定打开方式为ios::out
	ofs.open("text.txt", ios::out);
	//4、写入信息,并进行换行
	ofs << "Hello World!" << endl;
	ofs << "姓名:Lucy" << endl;
	//5、关闭文件
	ofs.close();

	return 0;
}

读文件

读文件步骤如下:

  1. 包含头文件:#include <fstream>

  2. 创建流对象:ifstream ifs;

  3. 打开文件并判断文件是否打开成功:ifs.open("文件路径",打开方式);ifs.is_open();

  4. 读数据,四种方式读取

  5. 关闭文件:ifs.close();

例子:

#include<iostream>
//1、添加文件操作头文件
#include<fstream>
#include<string>

using namespace std;

int main() {
	//3、创建输入流对象
	ifstream ifs;
	//4、打开文件,项目根目录的text.txt,并且指定打开方式为ios::in
	ifs.open("text.txt", ios::in);
	//5、判断是否打开成功
	bool isOpen = ifs.is_open();
	if (!isOpen) {
		cout << "文件打开失败!" << endl;
		return 1;
	}
	//6、读数据
	//方式一、利用字符数组做缓冲区读
	//char buf[1024] = { 0 };
	//while (ifs >> buf){
	//	cout << buf << endl;
	//}
	//方式二、利用getline()函数,逐行读取到缓冲区数组
	//char buf[1024] = { 0 };
	//while (ifs.getline(buf,sizeof(buf))){
	//	cout << buf << endl;
	//}
	//方式三、利用string做缓冲区,使用全局函数getline进行读取
	string buf;
	while (getline(ifs, buf)) {
		cout << buf << endl;
	}
	//方式四、使用get()函数,一个一个字符读取,直到文件尾(不推荐,效率低)
	//char c;
	//while ((c = ifs.get()) != EOF) { //EOF:end of file文件尾
	//	cout << c; //此时不要自己换行
	//}


	//7、关闭文件
	ifs.close();

	return 0;
}

二进制文件

以二进制的方式对文件进行读写操作

打开方式要指定为:ios::binary

写文件

二进制方式写文件主要利用流对象调用成员函数write

函数原型 :ostream& write(const char * buffer,int len);

参数解释:字符指针buffer指向内存中一段存储空间。len是读写的字节数

例子:

#include<iostream>
//1、引入文件操作头文件
#include<fstream>
#include<string>

using namespace std;

class Person {
public:
	//因为要使用二进制写入文件,所以最好不要使用cpp的string,使用c的方法就可以了
	char name[64];
	int age;
};

int main() {
	//2、创建输出流对象,打开文件也可以写在构造函数里面
	ofstream ofs("person.txt", ios::out | ios::binary);
	//3、打开文件,打开方式:二进制|写
	//ofs.open("person.txt", ios::out | ios::binary);
	//4、写文件
	Person person = { "张三" ,18 };
	ofs.write((const char*)&person, sizeof(Person));
	//5、关闭文件
	ofs.close();
	return 0;
}

读文件

二进制方式读文件主要利用流对象调用成员函数read

函数原型:istream& read(char *buffer,int len);

参数解释:字符指针buffer指向内存中一段存储空间,len是读写的字节数

例子:

#include<iostream>
//1、引入文件操作头文件
#include<fstream>
#include<string>

using namespace std;

class Person {
public:
	char name[64];
	int age;
};

int main() {
	//2、创建输入流对象,打开文件也可以写在构造函数里面
	ifstream ifs("person.txt", ios::in | ios::binary);
	//3、打开文件,打开方式:二进制|写
	//ofs.open("person.txt", ios::out | ios::binary);
	//4、判断文件是否打开成功
	if (!ifs.is_open()) {
		cout << "文件不存在" << endl;
		return 1;
	}
	//5、读取文件
	Person person;
	ifs.read((char*)&person, sizeof(Person)); //将文件读取到person对象中
	cout << "name:" << person.name << ",年龄:" << person.age << endl;
	//6、关闭文件
	ifs.close();
	return 0;
}