写文件
#include<iostream>
using namespace std;
#include<fstream>
void test01()
{
//1、包含头文件
//2、创建流对象
ofstream ofs;
//3、指定打开方式
ofs.open("test.txt", ios::out);
//4、往文件里写内容
ofs << "姓名:张三" << endl;
ofs << "性别:男" << endl;
ofs << "年龄:21" << endl;
//5、关闭文件
ofs.close();
}
读文件
#include<iostream>
using namespace std;
#include<fstream>
#include<string>
void test02()
{
//1、包含头文件
//2、创建流对象
ifstream ifs;
//3、打开文件,并判断是否打开成功
ifs.open("test.txt", ios::in);
if (!ifs.is_open())//此函数返回类型为bool类型
{
cout << "文件读取失败 " << endl;
return;
}
//4、读文件 (一共四种方式)//(第四种不推荐使用)
//第一种
/*char buff[1024] = { 0 };
while (ifs >> buff)
{
cout << buff <<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)
{
cout << c;
}
//5、关闭文件
ifs.close();
}