I am trying to convert a string like "testing123" into hexadecimal form in java. I am currently using BlueJ.
And to convert it back, is it the same thing except backward?
|
|
|
Here's a short way to convert it to hex:
|
|||||||||||||||||
|
|
To ensure that the hex is always 40 characters long, the BigInteger has to be positive:
|
|||||||||||||
|
|
The numbers that you encode into hexadecimal must represent some encoding of the characters, such as UTF-8. So first convert the String to a byte[] representing the string in that encoding, then convert each byte to hexadecimal.
|
|||
|
|
http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Hex.html |
|||||
|
|
Here an other solution
|
|||
|
You could return
|
||||
|
|
|
I would suggest something like this, where str is your input string:
(Untested, there probably is an issue with multibyte characters here.) (Edit by Software Monkey) Code in the loop should be:
and, personally, I would uppercase the result, as in:
|
|||||
|
|
To get the Integer value of hex
|
|||
|
|
|
||||
|
|
|
XKCD Forum : converting bytes to hexstring And you got how to go from String to byte[] in previous question |
|||
|
|
|
Much better:
|
||||
|
|