Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having a hard time trying to convert a String containing the hexadecimal representation of some bytes to its corresponding byte array.

I am getting 32bytes using the following code:

StringBuffer sb = new StringBuffer();
for (int i = 0; i < mdbytes.length; i++) {
    sb.append(Integer.toString((mdbytes[i] & 0xff) + 0x100, 16).substring(1));
}
return sb.toString();

Any idea how to get from the String to the array? In other words, how to do the reverse of the code above.

Thanks.

share|improve this question

4 Answers

up vote 3 down vote accepted

I'd try commons-codec byte[] originalBytes = Hex.decodeHex(string.toCharArray()). In fact I would use it also for the encoding part.

share|improve this answer

You can use the Integer.parseInt(String s, int radix) method to convert the hexadecimal representation back to an integer, which you can then cast into a byte. Use that to process the string two characters at a time.

share|improve this answer

call getBytes() on the String object

share|improve this answer
That won't do what he asks for. getBytes is rather the reverse of new String(mdbytes); new String(mdbytes).getbytes() should give mdbytes again (with reservation for potential encoding pitfalls). – JenEriC Mar 24 '11 at 21:56

Use the

String.getBytes();

method

share|improve this answer
I dint' think so. – Bozho Mar 24 '11 at 21:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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