How to Write Strings Into Binary File - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T01:17:51Zhttp://stackoverflow.com/feeds/question/684763http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file0How to Write Strings Into Binary Fileneversaint2009-03-26T06:58:05Z2009-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 <iostream>
#include <fstream>
using namespace std;
template <typename T> void WriteStr2BinFh (string St, ostream &fn) {
for (unsigned i = 0; i < St.size(); i++) {
char CStr = St[i];
fn.write(&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 < 9; i++) {
WriteStr2BinFh(Mystr+"\t", myfile);
}
myfile.close();
}
</code></pre>
http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684778#6847786Answer by jeffamaphone for How to Write Strings Into Binary Filejeffamaphone2009-03-26T07:06:42Z2009-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 < 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 &, 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#6847791Answer by Johann Gerell for How to Write Strings Into Binary FileJohann Gerell2009-03-26T07:07:51Z2009-03-26T07:07:51Z<p>First, <code>char CStr</code> says that <code>CStr</code> is a single character. Second, <code>fn.write(&CStr.front(), CStr.size());</code> treats that character as a container, like <code>std::vector<></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& St, ostream &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& St, ostream &fn)
{
fn.write(St.c_str(), St.length());
}
</code></pre>
http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684798#6847982Answer by bb for How to Write Strings Into Binary Filebb2009-03-26T07:18:55Z2009-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< 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 <iostream>
#include <fstream>
#include <string>
void WriteStr2BinFh( const std::string& St, std::ostream &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 < 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< std::string >( myfile, "\t" ), 10, MyStr );
</code></pre>
http://stackoverflow.com/questions/684763/how-to-write-strings-into-binary-file/684838#6848381Answer by Yoely for How to Write Strings Into Binary FileYoely2009-03-26T07:39:23Z2009-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<char *>(&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>