// 用商品的总价减去优惠卷的金额
Double goodRealPrice = sumPrice - queryDouble + goodTransPrice;// 目前的计费规则:总价-优惠卷-运费
DecimalFormat df = new DecimalFormat("#.00");
String format = df.format(goodRealPrice) ;
goodRealPrice = Double.parseDouble(format);