文件操作:文本文件(写/读)

文件操作可以将数据永久化,C++中对文件操作需要包含头文件 < fstream >

文件类型分为两种:

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

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

操作文件的三大类:

  1. ofstream:写操作

  2. ifstream: 读操作

  3. fstream : 读写操作

文件打开方式:

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

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

写文件步骤如下:

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

  2. 创建流对象 ofstream ofs;

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

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

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

cpp 复制代码
#include<iostream>
using namespace std;
#include<fstream>

//文本文件	写文件

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

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

	//3.指定打开方式
	ofs.open("test.txt", ios::out);//生成的test.txt在当前代码目录下

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

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

	return 0;
}

读文件步骤如下:

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

  2. 创建流对象 ifstream ifs;

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

  4. 读数据 四种方式读取

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

cpp 复制代码
#include<iostream>
using namespace std;
#include<fstream>
#include<string>

//文本文件	读文件
void test()
{
	//1.包含头文件

	//2.创建对象流
	ifstream ifs;

	//3.打开文件 并且利用is_open函数可以判断文件是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "文件打开失败" << endl;
		return;
	}

	//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 buf;
	while (getline(ifs, buf))
	{
		cout << buf << endl;
	}*/

	//第四种(不推荐用)
	char c;
	while ((c = ifs.get()) != EOF)//EOF:end of file
	{
		cout << c;
	}

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

int main()
{
	test();

	return 0;
}
相关推荐
cany10001 分钟前
C++进阶 -- std::deque‌ 和 ‌std::list
开发语言·c++
曾几何时`2 分钟前
Go(二)Goroutine及GMP模型
开发语言·后端·golang
AD钙奶-lalala4 分钟前
kotlin反射
android·开发语言·kotlin
2301_789015626 分钟前
Lnux权限
linux·开发语言·c++·权限
江湖中的阿龙7 分钟前
Go语言零基础入门教程(一)环境搭建与基础入门
开发语言·后端·golang
集成显卡8 小时前
Rust实战七 |基于带 colored 颜色文字控制台的批量文件删除工具
开发语言·后端·rust
比昨天多敲两行9 小时前
linux 线程概念与控制
java·开发语言·jvm
huaweichenai9 小时前
php 根据每个类型的抽签范围实现抽签功能
开发语言·php
codeejun10 小时前
每日一Go-73、云原生成本优化 —— 资源限制 & 指标驱动扩容
开发语言·云原生·golang
就叫_这个吧11 小时前
Java注解、元注解、自定义注解定义及应用
java·开发语言·注解