在Java语言中,当直接输出一个double类型的数据时,默认是按科学计数法输出,此时如果想与其他数据进行比较的时候,就比较麻烦了。
因此,如果能手动设置输出的模式,就比较方便了。有两种方式,
1、格式化输出,代码如下:
- public class TestDouble2String {
- public static void main(String[] args) {
- Double double1 = 123456789.123456789;
- DecimalFormat decimalFormat = new DecimalFormat("#,##0.00");
- System.out.println("格式输出:" + decimalFormat.format(double1));
- System.out.println("默认输出:" + double1);
- }
- }
2、借用BigDecimal类进行输出,代码如下:
- public class TestDouble2String {
- public static void main(String[] args) {
- double d = 123456789.123456789;
- System.out.println("默认输出:" + d);
- System.out.println("格式输出:" + BigDecimal.valueOf(d));
- }
- }
如此即可。
转载自:http://vincentboy.iteye.com/blog/1647187