我想将 a 转换BigDecimal
为String
用于打印目的,但打印出所有没有科学记数法的数字。例如:
BigDecimal d = BigDecimal.valueOf(12334535345456700.12345634534534578901);
String out = d.toString(); // Or perform any formatting that needs to be done
System.out.println(out);
我想12334535345456700.12345634534534578901
打印出来。现在我得到:1.23345353454567E+16
。