I have a hex string that represents a 64-bit unsigned int.
I want to convert this to a decimal representation in java.
I wanted to use Long.parseLong("HexString", 16); but in java the leftmost bit is the sign bit and any number greater than 2^31-1 would not fit.
SO how do i convert and store this data?
Thanks, Sunny