double类型输出,不以科学计数法方式输出

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

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

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

[java]  view plain  copy
  1. public class TestDouble2String {  
  2.     public static void main(String[] args) {  
  3.         Double double1 = 123456789.123456789;  
  4.         DecimalFormat decimalFormat = new DecimalFormat("#,##0.00");// 格式化设置  
  5.         System.out.println("格式输出:" + decimalFormat.format(double1));  
  6.         System.out.println("默认输出:" + 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.         System.out.println("默认输出:" + d);  
  5.         System.out.println("格式输出:" + BigDecimal.valueOf(d));  
  6.     }  
  7. }  

如此即可。

转载自:http://vincentboy.iteye.com/blog/1647187

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值