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

I got an exception while parsing a string to byte

String Str ="9B7D2C34A366BF890C730641E6CECF6F";

String [] st=Str.split("(?<=\\G.{2})");

byte[]bytes = new byte[st.length];
for (int i = 0; i <st.length; i++) {
 bytes[i] = Byte.parseByte(st[i],16);
}
share|improve this question
1  
When you printed the value of st what did you see? – S.Lott Jul 12 '11 at 0:53

2 Answers

up vote 1 down vote accepted

That's because the default parse method expects a number in decimal format, to parse hexadecimal number, use this parse:

Byte.parseByte(st[i], 16);

Where 16 is the base for the parsing.

As for your comment, you are right. The maximum value of Byte is 0x7F. So you can parse it as int and perform binary AND operation with 0xff to get the LSB, which is your byte:

bytes[i] = Integer.parseInt(st[i], 16) & 0xFF;
share|improve this answer
after changing but got this exception java.lang.NumberFormatException: Value out of range. Value:"9B" Radix:16 – Qaiser Mehmood Jul 12 '11 at 1:14
You're rught - Byte is a signed type, its max value is 0x7F. Use the following instead bytes[i] = Integer.parseInt(st[i], 16) & 0xFF; as integer is big enough and binary operation is allowed. – Binyamin Sharet Jul 12 '11 at 1:17

Assuming you want to parse the string as hexadecimal, try this:

bytes[i] = Byte.parseByte(st[i], 16);

The default radix is 10, and obviously B is not a base-10-digit.

share|improve this answer
after changing but got this exception java.lang.NumberFormatException: Value out of range. Value:"9B" Radix:16 – Qaiser Mehmood Jul 12 '11 at 1:14

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.