温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C++怎么使用ifstream读取文件内容

发布时间:2023-03-01 16:47:07 来源:亿速云 阅读:145 作者:iii 栏目:开发技术

这篇“C++怎么使用ifstream读取文件内容”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“C++怎么使用ifstream读取文件内容”文章吧。

测试文件如下内容:myfile.txt

Fry: One Jillion dollars.
 [Everyone gasps.]
 Auctioneer: Sir, that's not a number.
 数据读取, 测试 。

C++中使用ifstream类实现读文件操作,代码如下:

实现了:

1、以行读取文件

2、逐个词读取文件

3、文件名正确性检测

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

//读取整个文件内容到char array数组中去
void fileReadAllToCharArray()
{
	std::ifstream file;
	//以只读方式打开文件
	file.open("myfile.txt", std::ios::in);

	//指针定位到文件末尾
	file.seekg(0, std::ios::end);
	int fileLength = file.tellg();

	//指定定位到文件开始
	file.seekg(0, std::ios::beg);

	cout << "fileLength:" << fileLength << endl;
	char* buffer = new char[fileLength + 1];
	file.read(buffer, fileLength);
	buffer[fileLength] = '\0';
	string contents = buffer;
	cout << "contents:" << contents << endl;

	if (buffer) {
		delete[] buffer;
	}
	file.close();
}

//读取方式:逐行读取Line by Line, 将行读入字符数组, 行之间用回车换行区分
void fileReadToCharArray()
{
	std::ifstream file("myfile.txt");
	
	constexpr int LINE_LENGTH = 100;
	char str[LINE_LENGTH];

	int lineNum = 0;
	while (file.getline(str, LINE_LENGTH))
	{
		cout << "Read from line[" << ++lineNum << "] :"<<str<<endl;
	}
	cout << "file has line:" << lineNum << endl;
}

//读取方式:逐行读取Line by Line, 将行读入string, 行之间用回车换行区分
void fileReadToString()
{
	std::ifstream file("myfile.txt");

	int lineNum = 0;
	string str;
	while (getline(file, str)) {
		cout << "Read Data on Line:[" << ++lineNum<<"] :" << str <<endl;
	}
	cout << "file has line:" << lineNum << endl;
}

//读取方式:逐词读取Word by Word,词之间用空格划分
void fileReadWbW()
{
	std::ifstream file("myfile.txt");
	string s;
	while (file >> s)
	{
		cout << "Read From File[" << s <<"]"<<endl;
	}
}

//带检测文件名功能
void fileReadWithErrCheck()
{
	string fileName = "file .dat";
	std::ifstream fin(fileName.c_str());
	if (!fin) {
		cout << "Error Opening file:[" << fileName << "]" << " for input " << endl;
		exit(-1);
	}
}
int main()
{
#if  0
	char data[100];

	ofstream outfile;
	outfile.open("myfile.txt", ios::out | ios::trunc);

	cout << "enter your name: ";
	//cin.getline(data, 100);
	outfile << "hello world"<<endl;

	ifstream infile;
	infile.open("myfile.txt", ios::in);
	cout << "read file from myfile.txta" << endl;
	string readData;
	infile >> readData;
	std::cout << "data:" << readData << endl;
	outfile.close();
#endif

	//读取整个文件内容到char array数组中去
	fileReadAllToCharArray();
	std::cout << "-----------------" << endl;

	//逐行读取Line by Line
	fileReadToCharArray();
	std::cout << "-----------------" << endl;

	//文件逐词读取Word by Word
	fileReadWbW();
	std::cout << "-----------------" << endl;

	//逐行读取Line by Line, 将行读入string分
	fileReadToString();

	//带检测文件名功能
	fileReadWithErrCheck();
	std::cout << "-----------------" << endl;
}

以上就是关于“C++怎么使用ifstream读取文件内容”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI