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

I'm trying to parse into int a String which is hexadecimal number in my code (FF00FF00, for example) using Integer.parseInt(String string, int radix), but always get NumberFormatException. If I parse the number without last two numbers (FF00FF) it works well.

Is there any method to parse such big numbers in Java?

share|improve this question

2 Answers

up vote 7 down vote accepted

If Integer is too small, use Long:

Long.parseLong(string, 16)

If Long is still too small, use BigInteger:

new BigInteger(string, 16)
share|improve this answer
Wow, I didn't know about existence of this class. I have very little experience in Java. I understand, I need a time :-). Thanks a lot :-) – teoREtik Aug 12 '11 at 10:34
1  
@teoREtik the difference is: Integer and Long are Object wrappers around primitive types. BigInteger and BigDecimal are Object-based solutions which means the arithmetic is probably slightly less efficient (does anybody have numbers about that?) but they can hold arbitrarily big numbers, only limited by the memory you have in your machine, whereas Integer, Long, Float etc are limited by what the corresponsing primitive type can hold. – Sean Patrick Floyd Aug 12 '11 at 10:46

I would use Long.parseLong(x, 16) BigInteger is overkill for a 32-bit value.

If you expect this value to be an int value you can cast the result.

int x = (int) Long.parseLong("FF00FF00", 16);
share|improve this answer
1  
true, I hadn't realized that the OP had actually listed the failing strings – Sean Patrick Floyd Aug 12 '11 at 10:34
What is the OP? – teoREtik Aug 12 '11 at 10:46
1  
@teoREtik the Original Poster, i.e. you :-) – Sean Patrick Floyd Aug 12 '11 at 10:47
@Sean Patrick Floyd Oh, I see :-) – teoREtik Aug 12 '11 at 11:13

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.