读文件与写文件步骤相似,但是读取方式相对于比较多
读文件步骤如下:
1.包含头文件
#include
2.创建流对象
ifstream ofs;
3.打开文件
ifs.open(“文件路径”,打开方式);
4.写数据
四种方式读取
5.关闭文件
ifs.close();
代码示例:
#include <iostream>
#include <fstream> //头文件包含
#include <string>
using namespace std;
//文本文件 写文件
void test01()
{
//1.包含头文件 fstream
// 2.创建流对象
ifstream ifs;
//3.指定打开方式
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()
{
test01();
return 0;
}
总结:
1.读文件可以利用ifstream,或者fstream类
2.利用is_open函数可以判断文件是否打开成功
3.close关闭文件