文本文件——写文件
#include<iostream>
#include<fstream>
using namespace std;
//文本文件中的写文件
void test01() {
//包含头文件,fstream
//创建流对象
ofstream ofs;
//指定打开方式
ofs.open("text.txt", ios::out);
//写内容
ofs << "姓名:张山" << endl;
ofs << "年龄:15" << endl;
ofs << "性别:无" << endl;
ofs.close();
}
int main() {
test01();
return 0;
}
文本文件——读文件
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
void test01() {
ifstream ifs;
ifs.open("text.txt", ios::in);
if (!ifs.is_open())
cout << "文件打开失败" << endl;
//读数据
//char buf[1024] = { 0 };
/*while (ifs >> buf) {
cout << buf << endl;
}*/
//while (ifs.getline(buf, sizeof(buf)))
//{
// cout << buf << endl;
//}
/*string buf;
while (getline(i