Formatieren Sie BigDecimal ohne wissenschaftliche Notation mit voller Genauigkeit
Ich möchte eine konvertierenBigDecimal
zuString
für druckzwecke aber drucke alle ziffern ohne wissenschaftliche notation aus. Zum Beispiel:
BigDecimal d = BigDecimal.valueOf(12334535345456700.12345634534534578901);
String out = d.toString(); // Or perform any formatting that needs to be done
System.out.println(out);
Ich würde gerne bekommen12334535345456700.12345634534534578901
gedruckt. Im Moment bekomme ich:1.23345353454567E+16
.