Hi all !
I have a simple question. How can I deal with an Integer number major than Integer.MAX_VALUE?
I retrieve from db an hexadecimal String of 32 charachters and I should have to increment it in this way:
String retrievedFromDB;
Integer.toString( Integer.parseInt (retirevedFromDB, 16) +1, 16)
But if the String value is major than MAX_VALUE?
How can I resolve? Any help is appreciated.
Thank you