1 C++将文本文件一次性读取到std::string的方法
包含头文件:
#include <fstream>
#include <iostream>
读取代码如下:
std::ifstream in("test.txt", std::ios::in);
std::istreambuf_iterator<char> beg(in), end;
std::string strdata(beg, end);
in.close();
strdata即为存储该文本文件所有内容的string。
该方法只有四行代码即可完成文本文件的读取,不需要再一行一行的读了!
2 使用文件流的方式
#include <iostream>
#include <fstream>
std::string ReadFileToString(const std::string& file_path)
{
int fileLength = 0;
std::ifstream inFile(file_path, std::ios::binary);
if (!inFile.is_open())
{
inFile.close();
}
// 跳到文件尾
inFile.seekg(0, std::ios::end);
// 获取字节长度
fileLength = inFile.tellg();
// 跳到文件开头
inFile.seekg(0, std::ios::beg);
char* buffer = new char[fileLength];
// 读取文件
inFile.read(buffer, fileLength);
std::string result_str(buffer, fileLength);
delete[] buffer;
inFile.close();
return result_str;
}
int main()
{
std::cout << "读取的文件内容为:" << ReadFileToString("helloworld.txt") << std::endl;
return 0;
}
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:C++ – 最简单的将文本文件的内容一次性读取到std::string的方法
原文链接:https://www.stubbornhuang.com/902/
发布于:2020年08月21日 23:00:14
修改于:2023年06月26日 22:18:25
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50