For below java Code it dispaly 0E-10 as output
BigDecimal bd = new BigDecimal("00.0000000000");
System.out.println(bd); // output is 0E-10
0E-10 is due to range value of Bigdecimal. but is there any way i can display as like input 00.0000000000 without much coding.?