c++中ifstream一次读取整个文件
Posted 车臣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++中ifstream一次读取整个文件相关的知识,希望对你有一定的参考价值。
转载:http://www.cnblogs.com/kex1n/p/4028428.html
第一种方法:
读取至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());
以上是关于c++中ifstream一次读取整个文件的主要内容,如果未能解决你的问题,请参考以下文章