c++的文件读写

cpp 复制代码
#include<iostream>
#include<string>
//1:引入头文件
#include<fstream>
using namespace std;
//把程序中的信息输出到缓冲区,然后写到文件
void test01()
{
	//2:定义流对象
	ofstream ofs;
	//3:打开文件,以写的方式打开,如果没有文件,就创建
	ofs.open("test.txt", ios::out | ios::trunc);
	//4:判断是否打开成功
	if (!ofs.is_open())
	{
		cout << "打开失败" << endl;
	}
	//5:写信息
	ofs << "姓名:灰灰" << endl;;
	ofs << "年龄:20" << endl;
	//6:关闭文件
	ofs.close();//关闭文件,并刷新缓冲区
}
//把磁盘信息输入到缓冲区,然后读到程序中(读文件)
void test02()
{
	ifstream ifs;
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "打开失败" << endl;
	}
	//第一种方式读取文件
	//一行一行读
	/*char buf[1024] = { 0 };
	while (ifs >> buf)
	{
		cout << buf << endl;
	}*/
	//第二种方式读取文件
	//char buf[1024] = { 0 };
	//while (!ifs.eof())//判断是否读到文件尾部
	//{
	//	ifs.getline(buf, sizeof(buf));
	//	cout << buf << endl;
	//}
	//第三种方式,一个一个字符读
	char c;
	while ((c = ifs.get()) != EOF)
	{
		cout << c;
	}
	ifs.close();
}

int main()
{
	test02();
	system("pause");
	return EXIT_SUCCESS;
}

c++的二进制读写

cpp 复制代码
using namespace std;
class maker
{
public:
	maker()
	{

	}
	maker( const char*name,int age)
	{
		strcpy(this->name, name);
		this->age = age;


	}
	
public:
	int age;
	char name[64];
};
void test()
{
	maker m1("huihi", 20);
	maker m2("huifa",2);
	ofstream ofs;
	ofs.open("text.txt", ios::out |ios::trunc| ios::binary);
	if (!ofs.is_open())
	{
		cout << "打开失败" << endl;
	}
	//写
	ofs.write((const char*)&m1, sizeof(maker));
	ofs.write((const char*)&m2, sizeof(maker));
	ofs.close();
}
//读
void test02()
{
	ifstream ifs;
	ifs.open("text.txt", ios::in | ios::binary);
	if (!ifs.is_open())
	{
		cout << "打开失败" << endl;
	}
	//读
	maker m1;
	maker m2;
	ifs.read((char*) & m1, sizeof(maker));
	ifs.read((char*)&m2, sizeof(maker));
	cout << "name:" << m1.name << "age:" << m1.age << endl;
	cout << "name:" << m2.name << "age:" << m2.age << endl;
}
int main()
{
	test02();
	system("pause");
	return EXIT_SUCCESS;
}
相关推荐
傻啦嘿哟15 分钟前
如何使用 Python 开发一个简单的文本数据转换为 Excel 工具
开发语言·python·excel
大数据编程之光19 分钟前
Flink Standalone集群模式安装部署全攻略
java·大数据·开发语言·面试·flink
初九之潜龙勿用19 分钟前
C#校验画布签名图片是否为空白
开发语言·ui·c#·.net
爱摸鱼的孔乙己34 分钟前
【数据结构】链表(leetcode)
c语言·数据结构·c++·链表·csdn
Dola_Pan36 分钟前
C语言:数组转换指针的时机
c语言·开发语言·算法
ExiFengs36 分钟前
实际项目Java1.8流处理, Optional常见用法
java·开发语言·spring
paj12345678938 分钟前
JDK1.8新增特性
java·开发语言
IT古董1 小时前
【人工智能】Python在机器学习与人工智能中的应用
开发语言·人工智能·python·机器学习
繁依Fanyi1 小时前
简易安卓句分器实现
java·服务器·开发语言·算法·eclipse
烦躁的大鼻嘎1 小时前
模拟算法实例讲解:从理论到实践的编程之旅
数据结构·c++·算法·leetcode