C++ read the whole file in buffer [duplicate]

為{幸葍}努か 提交于 2019-11-28 06:48:34
jrok

There's no need for wrapper classes for very basic functionality:

std::ifstream file("myfile", std::ios::binary | std::ios::ate);
std::streamsize size = file.tellg();
file.seekg(0, std::ios::beg);

std::vector<char> buffer(size);
if (file.read(buffer.data(), size))
{
    /* worked! */
}

You can access the contents of a file with a input file stream std::ifstream, then you can use std::istreambuf_iterator to iterate over the contents of the ifstream,

std::string
getFileContent(const std::string& path)
{
  std::ifstream file(path);
  std::string content((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());

  return content;
}

In this case im using the iterator to build a new string using the contents of the ifstream, the std::istreambuf_iterator<char>(file) creates an iterator to the begining of the ifstream, and std::istreambuf_iterator<char>() is a default-constructed iterator that indicate the special state "end-of-stream" which you will get when the first iterator reach the end of the contents.

ArtemGr

Something I have in most of my programs:

/** Read file into string. */
inline std::string slurp (const std::string& path) {
  std::ostringstream buf; 
  std::ifstream input (path.c_str()); 
  buf << input.rdbuf(); 
  return buf.str();
}

Can be placed in a header.
I think I have found it here: https://stackoverflow.com/a/116220/257568

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!