vote up 0 vote down star

Hello, I did it before... But I forgot. I have a file with some data:

0.5 0.6 0.7 1.2 1.5

How can I read this in c++? I did it with stream... something like:

float var = 0;
stream >> var;
flag

1  
In addition to the answers below, here is a very good reference for C++, you'll find further information on streams in section 6: icce.rug.nl/documents/cplusplus – RedGlyph Nov 2 at 10:01

5 Answers

vote up 3 vote down check

Something like this?

std::ifstream stream("C:/a.txt");
    float var = 0;
    while(stream >> var)
    {
    	//Do some processing
    }
link|flag
eof() returns true only after the extraction fails. – avakar Nov 2 at 9:53
I have edited the answer to make it safe. @Ockonal: Please check the edited answer. – Naveen Nov 2 at 10:01
Okay, thanks. I've chaged that. – Ockonal Nov 2 at 10:52
vote up 3 vote down

The following snippet should give you a clue. Don't forget to include <fstream>.

std::ifstream fin("filename.txt");
float value;
while (fin >> value)
{
    // Do whatever you want with the value
}

Do not try to test fin.eof() it won't tell you if you're about to bump to the end of file.

link|flag
vote up 0 vote down

To read from files, use std::ifstream.

link|flag
vote up -1 vote down

Do you mean how to open a file and read data from it?

That should look something like this:

float var;
ifstream infile("filename");
if(infile.good()){
    while(!infile.eof()){
        infile >> var;
        cout << var << "is the next value\n";
    }
}
link|flag
why the downvote? is there something missing in my example? – warren Nov 2 at 12:51
this is how I've always done file I/O; and how I've always seen it in various reference materials. – warren Nov 2 at 12:55
warren, your code is incorrect, see my comment at Vijay's answer (I didn't downvote, though). – avakar Nov 2 at 13:27
eof doesn't return true until after the first failed attempt to read from the file. So (unless the file ends immediately after the last number, without a newline) your loop will perform an extra iteration. – Thomas Padron-McCarthy Nov 2 at 13:45
Actually, avakar's "bumped into the end of file during the last extraction" is a better explanation than my "first failed attempt to read". If the file ends immediately after the last number, eof will turn true after the last ">>" operation that was successfull. Yes, on a lower level there was a byte-read that failed involved, but the ">>" operation was successful in that case, so "bumped into" is much better pedagogically. – Thomas Padron-McCarthy Nov 2 at 14:02
show 2 more comments
vote up 0 vote down

Something like this. The << operator treats spaces as a separator.

float array[5] = {0.0f};

for(int i = 0; i < 5; i++)
{
    stream >> array[i];
}

BTW I did 5 since you had 5 in your example. (and I am assuming you have the stream setup)

link|flag
@Ólafur - how is that going to work? Perhaps my C++ syntax memory is waay off, but as I read it, you're going to read from the file into the address of var, not into the next position in the array. You should want to put the [i] back at the end of var, as I had modified for you earlier - unless this is a way of using arrays I've just never seen or heard of before. – warren Nov 2 at 12:53
Ya just an error from me. – Ólafur Waage Nov 2 at 13:08

Your Answer

Get an OpenID
or

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