I have a byte array. I need to show its bytes on screen. How can I turn the bytes into a string representation without any conversion?
*By conversion, in this context I mean not decoding it into ASCII or any other equivalent encoding system
So for instance, if I have:
byte[] a = { 0x3F, 0x2C, 0x6A };
I'd like results like this:
String[] b = { "3F", "2C", 6A"};

0xto tell Java that the literal is in hexadecimal representation, as thus:byte[] a = { 0x3F, 0x2C, 0x6A };. Then Java will know to convert from hex. – iamnotmaynard Jan 30 at 19:09