How to convert from float to bigDecimal in java?
From the javadocs, the string constructor is generally the preferred way to convert a Quote from the docs:
|
|||||
|
|
There are two ways: First, the recommended way:
but if you print the big decimal it displays 0.20000000298023224, which might not satisfy the needs of your program. Another way:
and if you print the big decimal it displays 0.2 |
|||
|
|
|
For a precision of 3 digits after the decimal point:
|
|||
|
|
|
|||
|
|
Converting from
|
|||
|
|
|
Use the
|
||||
|
