vote up 6 vote down star
15

Hi, I'd like to read whole content of a text file to a std::string object with c++.

With Python, I can write:

text = open("text.txt", "rt").read()

It is very simple and elegance. I hate ugly stuff, so I'd like to know what is the most elegance way to read a text file with c++? Thanks.

flag

65% accept rate
If you hate ugly stuff, you better not use C++ :P – OregonGhost Oct 12 '08 at 10:43
A note about the elegance, even though the most elegant iostream solution will still seem ugly to you, you can just encapsulate in a beautiful function so that it won't hurt your eyes ;) – OregonGhost Oct 12 '08 at 10:53

4 Answers

vote up 30 vote down check

There are many ways, you pick which is the most elegant for you.

Reading into char*:

ifstream file ("file.txt", ios::in|ios::binary|ios::ate);
if (file.is_open())
{
    size = file.tellg();
    char *contents = new char [size];
    file.seekg (0, ios::beg);
    file.read (contents, size);
    file.close();
    //... do something with it
    delete [] contents;
}

Into std::string:

std::ifstream in("file.txt");
std::string contents((std::istreambuf_iterator<char>(in)), 
    std::istreambuf_iterator<char>());

Into vector<char>:

std::ifstream in("file.txt");
std::vector<char> contents((std::istreambuf_iterator<char>(in)),
    std::istreambuf_iterator<char>());

Into string, using stringstream:

std::ifstream in("file.txt");
std::stringstream buffer;
buffer << in.rdbuf();
std::string contents(buffer.str());

file.txt is just an example, everything works fine for binary files as well, just make sure you use ios::binary in ifstream constructor.

link|flag
I like your answer even better than mine, which is not something I say often. Good job! +1 – Chris Jester-Young Oct 12 '08 at 11:11
you actually need an extra set of parentheses around the first argument to contents' constructor with istreambuf_iterator<> to prevent it from being treated as a function declaration. – Greg Rogers Oct 12 '08 at 12:41
@Greg: thanks, I fixed it now. – Milan Babuškov Oct 12 '08 at 13:36
delete [] missing from char* version? – Shadow2531 Oct 12 '08 at 14:28
memblock in the first version should probably be contents. – Roskoto Oct 12 '08 at 16:31
show 11 more comments
vote up 3 vote down

You seem to speak of elegance as a definite property of "little code". This is ofcourse subjective in some extent. Some would say that omitting all error handling isn't very elegant. Some would say that clear and compact code you understand right away is elegant.

Write your own one-liner function/method which reads the file contents, but make it rigorous and safe underneath the surface and you will have covered both aspects of elegance.

All the best

/Robert

link|flag
Corollary: Elegance is as elegance does; notions of elegant code differ between languages and paradigms. What a C++ programmer might consider elegant could be horrific for a Ruby or Python programmer, and vice-versa. – Rob Oct 12 '08 at 15:50
vote up 0 vote down

I like Milan's char* way, but with std::string.


#include <iostream>
#include <string>
#include <fstream>
#include <cstdlib>
using namespace std;

string& getfile(const string& filename, string& buffer) {
    ifstream in(filename.c_str(), ios_base::binary | ios_base::ate);
    in.exceptions(ios_base::badbit | ios_base::failbit | ios_base::eofbit);
    buffer.resize(in.tellg());
    in.seekg(0, ios_base::beg);
    in.read(&buffer[0], buffer.size());
    return buffer;
}

int main(int argc, char* argv[]) {
    if (argc != 2) {
        cerr << "Usage: this_executable file_to_read\n";
        return EXIT_FAILURE;
    }
    string buffer;
    cout << getfile(argv[1], buffer).size() << "\n";
}

(with or without the ios_base::binary, depending on whether you want newlines tranlated or not. You could also change getfile to just return a string so that you don't have to pass a buffer string in. Then, test to see if the compiler optimizes the copy out when returning.)

However, this might look a little better (and be a lot slower):


#include <iostream>
#include <string>
#include <fstream>
#include <cstdlib>
using namespace std;

string getfile(const string& filename) {
    ifstream in(filename.c_str(), ios_base::binary);
    in.exceptions(ios_base::badbit | ios_base::failbit | ios_base::eofbit);
    return string(istreambuf_iterator<char>(in), istreambuf_iterator<char>());
}

int main(int argc, char* argv[]) {
    if (argc != 2) {
        cerr << "Usage: this_executable file_to_read\n";
        return EXIT_FAILURE;
    }
    cout << getfile(argv[1]).size() << "\n";
}
link|flag
vote up 2 vote down

There's another thread on this subject.

My solutions from this thread (both one-liners):

The nice (see Milan's second solution):

string str((istreambuf_iterator<char>(ifs)), istreambuf_iterator<char>());

and the fast:

string str(static_cast<stringstream const*>(&(stringstream() << ifs.rdbuf()))->str());

Beware of the second way, I believe it to be non standards compliant (pointer to a non-const temp) although all compilers I tested accept it and it works fine. It's much the same as Milan's third option, anyway, just compressed to one single line.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.