I'm currently using a std::ofstream a function and a std::stringstream

std::ofstream outFile;
outFile.open(output_file);

Then I call a function

GetHolesResults(..., std::ofstream &outFile){
  float x = 1234;
  std::stringstream ss;
  ss << x << std::endl;
  outFile << ss;
}

Now my outFile contains nothing but garbage "0012E708" repeated all over in GetHolesResults I can write

outFile << "Foo" << std:endl;

and it will output correctly in the outFile

Any suggestion on what I'm doing wrong?

link|improve this question

77% accept rate
I suggest you rephrase the title to something in the line of: 'writting stringstream contents into ofstream' (or ostream for what matters) – David Rodríguez - dribeas Nov 27 '08 at 22:09
feedback

2 Answers

up vote 8 down vote accepted

You are dumping the stringstream, and not its contents:

outFile << ss.str(); // obtain the contents as an std::string
link|improve this answer
feedback

You can do this, which doesn't need to create the string. It makes the output stream read out the contents of the stream on the right side (usable with any streams).

outFile << ss.rdbuf();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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