Content of Binary Output File Created With Output Stream - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T18:18:23Zhttp://stackoverflow.com/feeds/question/684931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream0Content of Binary Output File Created With Output Streamneversaint2009-03-26T08:23:19Z2009-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 <iostream>
#include <vector>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
void WriteStr2BinFh(const string& St, ostream &fn)
{
fn.write(St.c_str(), St.length());
}
int main ( int arg_count, char *arg_vec[] ) {
vector <string> 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<string>(Tags, "\t");
//cout << endl;
ofstream outfile;
outfile.open("MyOut.bin", ios::binary|ios::out);
for (unsigned i=0; i <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#6849513Answer by bb for Content of Binary Output File Created With Output Streambb2009-03-26T08:34:48Z2009-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 < int ></code> it will have difference). ( for output \t you could use operator << )</p>
http://stackoverflow.com/questions/684931/content-of-binary-output-file-created-with-output-stream/684969#6849691Answer by Wacek for Content of Binary Output File Created With Output StreamWacek2009-03-26T08:46:59Z2009-03-26T08:46:59Z<p>You must write data in binary format (not text):</p>
<pre><code>void WriteStr2BinFh(const string& St, ostream &fn)
{
char *p = 0;
long l = strtol(St.c_str(), &p);
fn << 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#6849701Answer by David Alfonso for Content of Binary Output File Created With Output StreamDavid Alfonso2009-03-26T08:47:29Z2009-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>