How to extract a number after the decimal point using BigDecimal ?
BigDecimal d = BigDecimal.valueOf(1548.5649);
result : extract only : 5649
|
How to extract a number after the decimal point using BigDecimal ?
result : extract only : 5649 |
|||
|
Try BigDecimal.remainder:
|
|||||||||||
|
|
Try:
prints:
|
|||
|
|
|
This should do the trick:
|
||||
|
|
|
try to use |
|||
|
|
|
You don't tell which type you want as a result. The easiest way is probably to transform the BigDecimal into a String, and take a substring:
|
|||||
|
BigDecimal.valueOf("1548.5649");instead because conversion betweendoubleandBigDecimalcan cause weird side effects. If you need precision, avoiddoubleandfloat. – Aaron Digulla Apr 30 '12 at 12:17