I have facing Problem in Parsing 16 digit hex string to decimal integer value.
I have tried following code for converting hex to decimal:
String HexString= "0000113fc208dff";
int dec= Long.parseLong(HexString);
But its throwing NumberFormatException: Invalid int ...
Now How do i Convert to Decimal/Binary and Further Convert Decimal/Binary to Time Stamp ??
Any help would be appreciated.