标签:
// 科学计数法 转成 普通数字
BigDecimal bd = new BigDecimal("3.40256010353E14");
String str = bd.toPlainString();
System.out.println(str);
// 普通数字 转成 科学计数法
Double d = Double.parseDouble("456846889000");
d = Math.pow(d, 1);
System.out.println(d);
标签:
原文地址:http://www.cnblogs.com/kill0001000/p/5545965.html