I'm doing some crazy math type stuff making composites of images and things like that and everything is going just great! I mess it up badly a few times, but eventually I find the errors and now everything is correct except this one line.

Integer.parseInt("ff8ca87c", 16);

This gives me a NumberFormatException for some reason. Do you know why that is?

Exception in thread "main" java.lang.NumberFormatException: For input string: "ff8ca87c"
    at java.lang.NumberFormatException.forInputString(Unknown Source)
    at java.lang.Integer.parseInt(Unknown Source)
    at java.lang.Integer.valueOf(Unknown Source)
link|improve this question

Have you tried 0xff8ca87c ? – John3136 Feb 8 at 9:33
@John3136 yes, it doesn't work either – Kronos25 Feb 8 at 9:34
@John3136 - The spec doesn't mention the 0x prefix at all. – Polynomial Feb 8 at 9:34
You are probably right - 0x would actually be on an int v=0xabcd rather than in a string. – John3136 Feb 8 at 9:38
feedback

1 Answer

up vote 5 down vote accepted

The reason it fails is that you're trying to put +0xff8ca87c into a signed integer. The maximum value of a 32-bit signed integer is +0x7fffffff, because the most significant bit is used to store the sign.

Try using a long instead. The maximum value of a 64-bit signed int is 0x7fffffffffffffff, which is more than adequate for your needs in this case.

link|improve this answer
Thanks, I wasn't really thinking about that. I confused the signed and unsigned int bounds. Unfortunately I'll have to test if parsing to long, and converting back to int effects the values of the bits (pesky sign bit!) – Kronos25 Feb 8 at 9:49
1  
Surprisingly no, the bits all stay consistent through the whole conversion, process. Useful! – Kronos25 Feb 8 at 9:54
1  
You might find Guava's UnsignedInts.parseUnsignedInt relevant. – Louis Wasserman Feb 8 at 19:12
feedback

Your Answer

 
or
required, but never shown

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