How to Write Strings Into Binary File - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T01:17:51Z http://stackoverflow.com/feeds/question/684763 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file 0 How to Write Strings Into Binary File neversaint 2009-03-26T06:58:05Z 2009-03-26T14:58:48Z <p>With this code I tried to print the string "foo" 10 times in binary format. But why doesn't the function to do it work?</p> <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; using namespace std; template &lt;typename T&gt; void WriteStr2BinFh (string St, ostream &amp;fn) { for (unsigned i = 0; i &lt; St.size(); i++) { char CStr = St[i]; fn.write(&amp;CStr.front(), CStr.size()); } return; } int main() { string MyStr = "Foo"; ofstream myfile; myfile.open("OuputFile.txt", ios::binary|ios::out); // We want to print it 10 times horizontally // separated with tab for (int i = 0; i &lt; 9; i++) { WriteStr2BinFh(Mystr+"\t", myfile); } myfile.close(); } </code></pre> http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684778#684778 6 Answer by jeffamaphone for How to Write Strings Into Binary File jeffamaphone 2009-03-26T07:06:42Z 2009-03-26T07:06:42Z <p>There is so much wrong here, I'm just going to list everything I see:</p> <p>Your for loop condition should be i &lt; 10.</p> <p>Why are you using a template but not the templatized parameter T?</p> <p>You're calling the method front() on CStr, but CStr is a char, not a string, so I don't even know how that compiles.</p> <p>Assuming CStr was a string, you don't want to take the address of the front() iterator using &amp;, instead you want to say something like:</p> <pre><code>fn.write(St.c_str(), St.size()); </code></pre> <p>And you don't want to loop for St.size() iterations. Just do the above. </p> http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684779#684779 1 Answer by Johann Gerell for How to Write Strings Into Binary File Johann Gerell 2009-03-26T07:07:51Z 2009-03-26T07:07:51Z <p>First, <code>char CStr</code> says that <code>CStr</code> is a single character. Second, <code>fn.write(&amp;CStr.front(), CStr.size());</code> treats that character as a container, like <code>std::vector&lt;&gt;</code>, which of course cannot compile.</p> <p>Assuming that everything up to <code>WriteStr2BinFh</code> is ok, which I haven't checked, this is how <code>WriteStr2BinFh</code> should (could) look:</p> <pre><code>void WriteStr2BinFh(const string&amp; St, ostream &amp;fn) { for(string::iterator it = St.begin(); it != St.end(); ++it) { fn.put(*it); } } </code></pre> <p>or, preferably</p> <pre><code>void WriteStr2BinFh(const string&amp; St, ostream &amp;fn) { fn.write(St.c_str(), St.length()); } </code></pre> http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684798#684798 2 Answer by bb for How to Write Strings Into Binary File bb 2009-03-26T07:18:55Z 2009-03-26T08:14:32Z <p>omg, it have a lot of errors: </p> <ul> <li>int main - should return value;</li> <li>you don't use template&lt; typename T > in your function; </li> <li>Mystr - not correct name in function call, names in c++ are case sencetive; </li> <li>char CStr - doesn't have method front, and std::string too;</li> <li>you couldn't get address of first element such as in case with vector; </li> <li>it will be better if you will accept std::string as const reference; </li> <li>you forgot to include string header; </li> <li>...</li> </ul> <p>fixed your example, with your code organize and your naming:</p> <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;string&gt; void WriteStr2BinFh( const std::string&amp; St, std::ostream &amp;out ) { out.write( St.c_str(), St.size() ); } int main() { std::string MyStr = "Foo"; std::ofstream myfile( "OuputFile.txt", std::ios::binary | std::ios::out ); for (size_t i = 0; i &lt; 9; ++i) { WriteStr2BinFh( MyStr+"\t", myfile ); } myfile.close(); return 0; } </code></pre> <p>but I've reccomended to use <code>std::fill_n</code> algorithm</p> <pre><code>std::fill_n( std::ostream_iterator&lt; std::string &gt;( myfile, "\t" ), 10, MyStr ); </code></pre> http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684838#684838 1 Answer by Yoely for How to Write Strings Into Binary File Yoely 2009-03-26T07:39:23Z 2009-03-26T14:58:48Z <p>Important points for doing an io operation in binary mode:</p> <ul> <li>The file has to be opened in output and binary mode using the flags ios::out (output mode) and ios::binary( binary mode) </li> <li>The function write takes two parameters. The first parameter is of type char* for the data to be written and the second is of type int asking for the size of data to be written to the binary file. </li> <li><p>File has to be closed at the end.</p> <pre><code>void write_to_binary_file(WebSites p_Data) { fstream binary_file("c:\\test.dat",ios::out|ios::binary|ios::app); binary_file.write(reinterpret_cast&lt;char *&gt;(&amp;p_Data),sizeof(WebSites)); binary_file.close(); } </code></pre> <p>This I/O binary function writes some data to the function. </p></li> <li><p>The file is opened in output and binary mode with ios::out and ios::binary. There's one more specifier ios::app, which tells the Operating system that the file is also opened in append mode. This means any new set of data will be appended to the end of file.</p></li> <li><p>The write function used above, needs the parameter as a character pointer type. So we use a type converter reinterpret_cast to typecast the structure into char* type.</p></li> </ul>