vote up 3 vote down star

Here is what I currently have so far:

void WriteHexToFile( std::ofstream &stream, void *ptr, int buflen, char *prefix )
{
    unsigned char *buf = (unsigned char*)ptr;

    for( int i = 0; i < buflen; ++i ) {
    	if( i % 16 == 0 ) {
    		stream << prefix;
    	}

    	stream << buf[i] << ' ';
    }
}

I've tried doing stream.hex, stream.setf( std::ios::hex ), as well as searching Google for a bit. I've also tried:

stream << stream.hex << (int)buf[i] << ' ';

But that doesn't seem to work either.

Here is an example of some output that it currently produces:

Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í 
Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í 
Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í 
Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í 
Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í 
Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í Í

I would like the output to look like the following:

FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
FF EE DD CC BB AA 99 88 77 66 55 44 33 22 11 00
flag

80% accept rate
BTW: You should use const void *ptr and const char *prefix to make clear that you won't modify these buffers. – rstevens Mar 8 at 16:23
@rstevens: Okay! – kitchen Mar 8 at 16:31
this is why I like stack overflow so much. these fun little problems come up from time to time and someone drops in a snippet of code and its solved... – MikeJ Mar 8 at 16:51

6 Answers

vote up 5 vote down check
#include <iostream>
using namespace std;
int main() {
    char c = 123;
    cout << hex << int(c) << endl;
}

Edit: with zero padding:

#include <iostream>
#include <iomanip>
using namespace std;
int main() {
    char c = 13;
    cout << hex << setw(2) << setfill('0') << int(c) << endl;
}
link|flag
Won't that just output it to the console? – kitchen Mar 8 at 16:26
Could you explain why that should work any differently from using stream.hex, like the asker already tried? – Rob Kennedy Mar 8 at 16:27
I find the 'hex' stream modifier a bit of a pain. If you are outputting other types you have to keep switching the stream back (using 'dec' for example) and as far as I know, it doesn't do leading zeros. – Arnold Spence Mar 8 at 16:27
@kitchen - replace cout with your own stream. – Neil Butterworth Mar 8 at 16:31
@rob because the OP's code is wrong? – Neil Butterworth Mar 8 at 16:32
show 8 more comments
vote up 1 vote down

You can also do it using something a bit more old-fashioned:

char buffer[3];//room for 2 hex digits and \0
sprintf(buffer,"%02X ",onebyte);
link|flag
vote up 1 vote down

Try:

#include <iomanip>
....
stream << std::hex << static_cast<int>(buf[i]);
link|flag
vote up 3 vote down

You simply need to configure your stream once:

stream << std::hex << std::setfill('0') << std::setw(2)
link|flag
vote up 0 vote down

I usually make a function which returns the digits and just use it:

void CharToHex(char c, char *Hex)
{
   Hex[0]=HexDigit(c>>4);
   Hex[1]=HexDigit(c&0xF);
}

char HexDigit(char c) { if(c<10) return c; else return c-10+'A'; }

link|flag
vote up 3 vote down
char upperToHex(int byteVal)
{
    int i = (byteVal & 0xF0) >> 4;
    return nibbleToHex(i);
}

char lowerToHex(int byteVal)
{
    int i = (byteVal & 0x0F);
    return nibbleToHex(i);
}

char nibbleToHex(int nibble)
{
    const int ascii_zero = 48;
    const int ascii_a = 65;

    if((nibble >= 0) && (nibble <= 9))
    {
        return (char) (nibble + ascii_zero);
    }
    if((nibble >= 10) && (nibble <= 15))
    {
        return (char) (nibble - 10 + ascii_a);
    }
    return '?';
}

More code here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.