星期一, 二月 26, 2007

将整个文件读入string中

IOStream著名专家Dietmar Kuehl给过两个方法

std::ifstream in("some.file");
std::istreambuf_iterator beg(in), end;
std::string str(beg, end);


#include
std::ifstream in("some.file");
std::ostringstream tmp;
tmp << in.rdbuf();
std::string str = tmp.str();

没有评论: