Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to read the whole file.txt into a char array. But having some issues, suggestions please =]

ifstream infile;
infile.open("file.txt");

char getdata[10000]
while (!infile.eof()){
  infile.getline(getdata,sizeof(infile));
  // if i cout here it looks fine
  //cout << getdata << endl;
}

 //but this outputs the last half of the file + trash
 for (int i=0; i<10000; i++){
   cout << getdata[i]
 }
share|improve this question
Or maybe someone can suggest a better way to store a text file into a char array. – nubme Dec 7 '10 at 3:18
If you do this in anything but a toy app ensure you put protections against unlimited memory allocation. – seand Dec 7 '10 at 3:21
2  
You seem to be missing some semicolons. – Karl Knechtel Dec 7 '10 at 6:31

4 Answers

up vote 1 down vote accepted

Every time you read a new line you overwrite the old one. Keep an index variable i and use infile.read(getdata+i,1) then increment i.

share|improve this answer
thanks, that fixed it!!! =] – nubme Dec 7 '10 at 3:27
1  
read(..., 1) reads one character at a time... very inefficient. – Tony D Dec 7 '10 at 3:53
infile.seekg(0,ios::end);int len = infile.peekg();infile.seekg(0,ios::beg);infile.read(getdata,len); – tmiddlet Dec 7 '10 at 14:09

You don't need to read line by line if you're planning to suck the entire file into a buffer.

char getdata[10000];
infile.read(getdata, sizeof getdata);
if (infile.eof())
{
    // got the whole file...
    size_t bytes_really_read = infile.gcount();

}
else if (infile.fail())
{
    // some other error...
}
else
{
    // getdata must be full, but the file is larger...

}
share|improve this answer

You are not changing the offset of the buffer.

share|improve this answer
can you clarify and post some code please. thanks! – nubme Dec 7 '10 at 3:14
This is really a comment, not an answer to the question. Please use "add comment" to leave feedback for the author. – Rostyslav Dzinko Aug 17 '12 at 9:31
std::ifstream infile;
infile.open("Textfile.txt", std::ios::binary);
infile.seekg(0, std::ios::end);
size_t file_size_in_byte = infile.tellg();
std::vector<char> data; // used to store text data
data.resize(file_size_in_byte);
infile.seekg(0, std::ios::beg);
infile.read(&data[0], file_size_in_byte);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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