Basically, my problem is two-fold, and refers pretty specifically to the Bitcoin RPC. I am writing a miner in Java for Litecoin (a spinoff of BTC) and need to take a string that looks like:

000000000000000000000000000000000000000000000000000000ffff0f0000

Convert it to look like

00000fffff000000000000000000000000000000000000000000000000000000

(Which I believe is switching from little endian to big endian)

I then need to turn that string into a byte array --

I've looked at the Hex class from org.apache, String.toByte(), and a piece of code that looks like:

public static byte[] toByta(char[] data) {
    if (data == null) return null;
    // ----------
    byte[] byts = new byte[data.length * 2];
    for (int i = 0; i < data.length; i++)
        System.arraycopy(toByta(data[i]), 0, byts, i * 2, 2);
    return byts;
}

So essentially: What is the best way, in Java to change endianness? And what is the best way to take a string representation of a number and convert it to a byte array to be hashed?

EDIT: I had the wrong result after changing the endian.

link|improve this question
Probably the most efficient would be to skip the endian conversion and just create the byte array directly from the little-endian char array, two char bytes at a time. It's easy to write your own hex-char-to-binary-byte converter, so you can avoid the arrayCopy kludge. – Hot Licks Nov 7 '11 at 1:45
But note that the endian conversion you demonstrated was wrong. The first five hex digits should be zero. – Hot Licks Nov 7 '11 at 1:46
Note that your new byte array should be HALF the length of the char array, not twice its length. – Hot Licks Nov 7 '11 at 1:48
I changed the endian conversion to be correct. Why would it be half the length of the char array? I thought chars were one byte each? – D. van der Bleek Nov 7 '11 at 2:52
@D.vanderbleek Java uses UTF-16 internally – Voo Nov 7 '11 at 2:56
show 1 more comment
feedback

1 Answer

  1. Integer and BigInteger both have toString methods taking a radix, so you can get the hex String.
  2. You can make a StringBuffer from that String and call reverse().
  3. You then convert back to a String using toString(), then get the bytes via getBytes();

Don't know if this is "best" but it requires little work on your part.

If you need better speed, call getBytes() on the original wrong direction hex string (from step 1) and reverse it in place using a for loop. e.g.

for (int i=0; i<bytes.length/2; i++) {
   byte temp = bytes[i];
   bytes[i] = bytes[bytes.length - i];
   bytes[bytes.length - i] = temp;
}
link|improve this answer
BTW, it would be wise to write a unit test for my code! – user949300 Nov 7 '11 at 3:29
feedback

Your Answer

 
or
required, but never shown

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