标签: java string double
在Java中,为了存储大数字(10 ^ 80到10 ^ 100),我们将使用Double。但是Double将以ae ^ x格式返回,其中x是指数值。有没有办法将其解包为字符串。 例如:Double d = 1000000000;
Double
Double d = 1000000000;
Double.toString(d); --> output: 1.0E9.
相反,我希望它为1000000000
答案 0 :(得分:5)
使用DecimalFormat:
DecimalFormat
Integer: MinimumInteger # # Integer # , Integer
来自Javadocs:
datafilling