vote up 1 vote down star

Let's say I have the string "1e". In Java, how can I convert it to the byte 0x1e?

flag

25% accept rate

3 Answers

vote up 8 vote down

Byte.parseByte will return a byte by parsing a string representation.

Using the method with the (String, int) signature, the radix can be specified as 16, so one can parse a hexadecimal representation of a byte:

Byte.parseByte("1e", 16);
link|flag
vote up 5 vote down
Integer.parseInt(str, 16);
link|flag
I tried that but that creates an int, not a byte--so for "1e" I would get 30, not 0x1e, even if I cast to a byte. – phpscriptcoder Sep 23 at 16:12
1  
How would you distinguish a byte of value 30 and 0x1e, which are stored identically when of type byte? – Kathy Van Stone Sep 23 at 16:22
2  
@phpscriptcoder: No, you would get 1e. Try this: String roundtrip = Integer.toHexString(Integer.parseInt(str, 16)); – sylvarking Sep 23 at 16:24
vote up 0 vote down

I got both of the methods to work. However, then I found out that this wasn't what I needed to do anyway...

link|flag
1  
But the question you asked *was* answered appropriately and correctly. Please be sure to accept an answer to your question, regardless of if you've discovered your problem wasn't the question you asked. – Brandon Belvin Sep 24 at 21:11

Your Answer

Get an OpenID
or

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