In this post, we will see how to convert BigDecimal to BigInteger in java.
Using BigDecimal constructor
You can simply use BigDecimal's toBigInteger()
method to convert BigDecimal to BigInteger.
Please note that this method will simply remove fractional part and you will loss precision while converting from BigDecimal to BigInteger in java.
Here is the complete example to convert BigDecimal to BigInteger in java.
1 2 3 4 5 6 7 8 9 10 11 12 |
import java.math.BigDecimal; import java.math.BigInteger; public class BigDecimalToBigIntegerMain { public static void main(String[] args) { BigDecimal bd= new BigDecimal("10.9"); BigInteger bi=bd.toBigInteger(); System.out.println("BigInteger bi: "+bi.toString()); } } |
When you run above program, you will get below output:
BigDecimal bd: 10
That’s all about how to convert BigInteger to BigDecimal in java.
Was this post helpful?
Let us know if this post was helpful. Feedbacks are monitored on daily basis. Please do provide feedback as that\'s the only way to improve.