c++中ifstream一次读取整个文件
Posted 小哈龙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++中ifstream一次读取整个文件相关的知识,希望对你有一定的参考价值。
- 读取至char*的情况
std::ifstream t;
int length;
t.open("file.txt"); // open input file
t.seekg(0, std::ios::end); // go to the end
length = t.tellg(); // report location (this is the length)
t.seekg(0, std::ios::beg); // go back to the beginning
buffer = new char[length]; // allocate memory for a buffer of appropriate dimension
t.read(buffer, length); // read the whole file into the buffer
t.close(); // close file handle
// ... do stuff with buffer here ...
- 2读取至std::string的情况
第一种方法:
#include <string>
#include <fstream>
#include <streambuf>
std::ifstream t("file.txt");
std::string str((std::istreambuf_iterator<char>(t)),
std::istreambuf_iterator<char>());
第二种方法:
#include <string>
#include <fstream>
#include <sstream>
std::ifstream t("file.txt");
std::stringstream buffer;
buffer << t.rdbuf();
std::string contents(buffer.str());
————————————————
版权声明:本文为CSDN博主「夜惊心」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/tulip527/article/details/7976471
以上是关于c++中ifstream一次读取整个文件的主要内容,如果未能解决你的问题,请参考以下文章
C++中,ifstream和ofstream定义文件流的区别