I am trying to parse a string as follows:
f2cff0a43553b2e07b6ae3264bc085a
in BigInt, however, when using the String constructor for BigInt, I obviously get an exception in the Number format:
BigInteger bi = new BigInteger("f2cff0a43553b2e07b6ae3264bc085a");
Any ideas how I can do this?
source share