Content of Binary Output File Created With Output Stream - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T18:18:23Z http://stackoverflow.com/feeds/question/684931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream 0 Content of Binary Output File Created With Output Stream neversaint 2009-03-26T08:23:19Z 2009-03-26T08:58:36Z <p>Dear all,</p> <p>This code compiles and does execute. It simply print the content into a binary format. However the output differs from what I expected, namely:</p> <ol> <li>Output file size should be much smaller that those created with std::cout.</li> <li>The content of output file should be compressed, hence when we open it in editor, we should not be able to see the content.</li> </ol> <p>But why the code below doesn't do as I hope it does? How can I modify it accordingly?</p> <pre><code>#include &lt;iostream&gt; #include &lt;vector&gt; #include &lt;fstream&gt; #include &lt;string&gt; #include &lt;sstream&gt; using namespace std; void WriteStr2BinFh(const string&amp; St, ostream &amp;fn) { fn.write(St.c_str(), St.length()); } int main ( int arg_count, char *arg_vec[] ) { vector &lt;string&gt; Tags; // In principle we have millions of such tags // Hence we need to compress it into binary output. Tags.push_back("0000000000"); Tags.push_back("0000101110"); Tags.push_back("0133030122"); Tags.push_back("0133132033"); Tags.push_back("1002013320"); Tags.push_back("1111111111"); Tags.push_back("1301013133"); Tags.push_back("3010112111"); Tags.push_back("3203012113"); Tags.push_back("3203012212"); //prn_vec&lt;string&gt;(Tags, "\t"); //cout &lt;&lt; endl; ofstream outfile; outfile.open("MyOut.bin", ios::binary|ios::out); for (unsigned i=0; i &lt;Tags.size(); i++) { WriteStr2BinFh(Tags[i]+"\t",outfile); } outfile.close(); return 0; } </code></pre> http://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream/684951#684951 3 Answer by bb for Content of Binary Output File Created With Output Stream bb 2009-03-26T08:34:48Z 2009-03-26T08:58:36Z <blockquote> <p>Output file size should be much smaller that those created with std::cout</p> </blockquote> <p>What you mean "created with std::cout"?<br /> It could be a little smaller if you will save ints, not strings.</p> <blockquote> <p>The content of output file should be compressed, hence when we open it in editor, we should not be able to see the content.</p> </blockquote> <p>No, it shouldn't be compressed. You could use Boost.Iostreams library <a href="http://www.boost.org/doc/libs/1_38_0/libs/iostreams/doc/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_38_0/libs/iostreams/doc/index.html</a> for create zipped files.</p> <p>For easy understanding you could think that binary file contain information which you could see in debugger when will looking memory. </p> <p>Also for outputting in binnary format you should use write stream method for all vector items (in case with <code>std::vector &lt; int &gt;</code> it will have difference). ( for output \t you could use operator &lt;&lt; )</p> http://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream/684969#684969 1 Answer by Wacek for Content of Binary Output File Created With Output Stream Wacek 2009-03-26T08:46:59Z 2009-03-26T08:46:59Z <p>You must write data in binary format (not text):</p> <pre><code>void WriteStr2BinFh(const string&amp; St, ostream &amp;fn) { char *p = 0; long l = strtol(St.c_str(), &amp;p); fn &lt;&lt; l; } </code></pre> <p>You must be aware that types like long have some maximum values, so you will probably have to split your string into n pieces and save as n longs. </p> http://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream/684970#684970 1 Answer by David Alfonso for Content of Binary Output File Created With Output Stream David Alfonso 2009-03-26T08:47:29Z 2009-03-26T08:47:29Z <blockquote> <p>The content of output file should be compressed, hence when we open it in editor, we should not be able to see the content.</p> </blockquote> <p>I'm afraid that the IOStream Library doesn't apply any compression to your output. As bb pointed out, you should use another library to get your stream compressed.</p> <blockquote> <p>Output file size should be much smaller that those created with std::cout.</p> </blockquote> <p>As a consequence of the previous argument, the output, which is treated as a stream of bytes (which happen to be ASCII represented characters) is written "as is" to the file, and, therefore, the size will not change.</p> <p>Take a look at some <a href="http://www.cplusplus.com/reference/iostream/ofstream/open.html" rel="nofollow">documentation</a> and a <a href="http://www.cs.hmc.edu/~fleck/envision/user-manual/binary-files.html" rel="nofollow">better explanation</a> of binary files in general.</p>