转:http://blog.csdn.net/qq_16313365/article/details/51896726
1.在java后台中进行转换
(1)使用BigDecimal类
double num=8.8888888E10;
String str=new BigDecimal(num).toString();参考用法: 参考
(2)使用DecimalFormat类
double num=8.8888888E10;
String str=new DecimalFormat("0.00").format(num);参考用法: 参考
2.在jsp页面中进行转换
(1)使用jstl标签fmt:formatNumber
导入:<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>使用 :<fmt:formatNumber value="8.8888888E10" pattern="#.##" minFractionDigits="2" > </fmt:formatNumber>参考用法: 参考
(2)使用js脚本
var num=8.8888888E10;
var str=parseFloat(num).toString();参考用法: 参考