BigDecimal bd1= new BigDecimal(0.000);
bd1 = bd1.setScale(2, RoundingMode.HALF_UP).stripTrailingZeros();
System.out.println("bd1 value::"+ bd1);
I get the following 0.00
for bd1, but I want bd1 as .00
not as 0.00
. Am I applying the methods correctly?