文件类型分为两种
- 文本文件 -文件以文本的 ASCLL码的形式存储在计算机中
- 二进制文件 - 文件以文本的 二进制形式存储在计算机中,用户一般不能直接读懂
操作文件的三大类
- ofstream 写操作
- ifstream 读操作
- fstream 读写操作
文本文件
- 包含头文件 #include
- 创建流对象 ofstream ofs;
- 打开文件 ofs.open("文件路径",打开方式);
- 写数据 ofs<<"写入的数据"
- 关闭文件 ofs.close();
文件的打开形式
打开方式 | 解释 |
---|---|
ios::in | 为读文件而打开文件 |
ios::out | 为写文件而打开文件 |
ios::ate | 初始位置:文件尾 |
ios::app | 追加方式写文件 |
ios::trunc | 如果文件存在先删除,再创建 |
ios::binary | 二进制方式 |
注意: 文件打开方式可以配合使用,利用|操作符
**例如:**用二进制方式写文件 ios::binary | ios:: out
写文件
cpp
#include<iostream>
using namespace std;
#include<fstream>
void test01()
{
ofstream ofs;
ofs.open("text.txt", ios::out);
ofs << "姓名:张三" << endl;
ofs << "性别:男" << endl;
ofs << "年龄:18" << endl;
ofs.close();
}
int main()
{
test01();
return 0;
}
总结
- 文件操作必须包含头文件fstream
- 读文件可以利用ofstream ,或者fstream类
- 打开文件的时候需要指定操作文件的路径,以及打开方式
- 利用<<可以向文件中写数据
- 操作完毕,要关闭文件
读文件
读文件步骤如下
- 包含头文件#include
- 创建流对象 ifstream ifs;
- 打开文件并判断文件是否打开成功 ifs.open("文件路径",打开方式)
- 读数据 四种方式读取
10.关闭文件 ifs.close()
cpp
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
void test01()
{
ifstream ifs;
ifs.open("text.txt", ios::in);
//判断文件是否打开
if (!ifs.is_open())
{
cout << "文件打开失败" << endl;
return;
}
//第一种方式
/*char buf[1024] = {0};
while (ifs >> buf)
{
cout << buf << endl;
}*/
//第二种
/*char buf[1024] = { 0 };
while (ifs.getline(buf, sizeof(buf)))
{
cout << buf << endl;
}*/
//第三种
/*string buf;
while (getline(ifs,buf))
{
cout << buf << endl;
}*/
//第四种不常用
char c;
while ((c = ifs.get())!= EOF)
//EOF是end of file的缩写,表示"文字流"的结尾。
//这里的文字流是文件也可以是标准输入
{
cout << c;
}
ifs.close();
}
int main()
{
test01();
return 0;
}
总结
- 读文件可以利用ifstream,或者fstream类
- 利用is_open()函数可以判断文件是否打卡成功
- close 关闭文件
二进制文件
以二进制文件的方式对文件进行读写操作 打开方式要指定 ios::binary
写文件
- 二进制方式写文件主要利用流对象调用成员函数write
- 函数原型:ostream& write(const char* buffer ,int len);
- 参数解释:字符指针指向内存中一段存储空间。len是读写的字节数
cpp
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
class Person
{
public:
char m_Name[64];
int m_Age;
};
//二进制读写
void test01()
{
//1.包含头文件
//2.创建输出流对象
ofstream ofs("person.txt", ios::out | ios::binary);
//3.打开文件
//ofs.open("person.txt",ios::out|ios::binary);
Person p = {"zhangsan",18};
//4.写文件
ofs.write((const char*)&p, sizeof(p));
//5.关闭文件
ofs.close();
}
int main()
{
test01();
return 0;
}
读文件
- 函数原型 istream&read(char *buffer,int len);
- 参数解释:字符指针buffer指向内存中的一段
cpp
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
class Person
{
public:
char m_Name[64];
int m_Age;
};
//二进制读写
void test01()
{
//1.包含头文件
//2.创建输出流对象
ifstream ifs("person.txt", ios::in | ios::binary);
if (!ifs.is_open())
{
cout << "文件打开失败" << endl;
}
//3.打开文件
//ofs.open("person.txt", ios::in | ios::binary);
Person p;
//4.输出文件
ifs.read((char*)&p, sizeof(p));
cout << "姓名:" << p.m_Name << "年龄:" << p.m_Age << endl;
//5.关闭文件
ifs.close();
}
int main()
{
test01();
return 0;
}