在Java语言中,当直接输出一个double类型的数据时,默认是按科学计数法输出,此时如果想与其他数据进行比较的时候,就比较麻烦了。

因此,如果能手动设置输出的模式,就比较方便了。有两种方式,

1、格式化输出,代码如下:

[java]  view plain  copy


1. public class TestDouble2String {  
2. public static void main(String[] args) {  
3. 123456789.123456789;  
4. new DecimalFormat("#,##0.00");// 格式化设置  
5. "格式输出:" + decimalFormat.format(double1));  
6. "默认输出:" + double1);  
7.     }  
8. }

2、借用BigDecimal类进行输出,代码如下:

[java]  view plain  copy


1. public class TestDouble2String {  
2. public static void main(String[] args) {  
3. double d = 123456789.123456789;  
4. "默认输出:" + d);  
5. "格式输出:" + BigDecimal.valueOf(d));  
6.     }  
7. }

 


如此即可。