I have to convert a BigDecimal
value, e.g. 2.1200
, coming from the database to a string. When I use the toString()
or toPlainString()
of BigDecimal
, it just prints the value 2.12
but not the trailing zeroes.
How do I convert the BigDecimal
to string without losing the trailing zeroes?
try this..