C++文件操作-文本文件-读文件

发布时间:2023年12月29日

示例:

#include<iostream>
using namespace std;
#include<fstream>
#include<string>
void test01()
{
	//创建文件流
	ifstream ifs;
	//打开文件 并判断文件是否打开成功
	ifs.open("test.txt", ios::in);
	if (!ifs.is_open())
	{
		cout << "打开文件失败"<<endl;
		return;
	}
	//读取文件
	//读取方式1
	//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)
	//{
	//	cout << c;
	//}

	//关闭文件
	ifs.close();
}
int main()
{
	test01();
	system("pause");
	return 0;
}

文章来源:https://blog.csdn.net/xms12_3/article/details/135287281
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。