Is there any way to convert a BigInteger
into a BigDecimal
?
I know you can go from a BigDecimal
to a BigInteger
, but I can't find a method to go the other way around in Java.
You have a parameterized constructor for that.
BigDecimal(BigInteger val)