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?
|
|
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? |
|||
|
|
|
|
You could return
|
|||
|
|
|
|
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.
|
||
|
|
|
|
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:
|
||||
|
|
|
XKCD Forum : converting bytes to hexstring And you got how to go from String to byte[] in previous question |
||
|
|