微信支付缺少1分钱问题

金额转换为分时精度丢失所致,BigDecimal在构建是必须用String类型才能不丢失精度

	我在转换金额的时候用的是这种:
	BigDecimal fee1 = new BigDecimal(2125.02);
    BigDecimal totalFee1=fee1.multiply(new BigDecimal(100));
    System.out.println(totalFee1.intValue());
    结果发现精度丢失,输出:212501
    
    通过实验发现如果数值中有小数,则必须用字符串构建,或用Double构建但最后要先转换成Double 再转换成int,否则会丢失精度,如下所示:
	BigDecimal fee=new BigDecimal("2125.02");
    BigDecimal totalFee=fee.multiply(new BigDecimal(100));
    System.out.println(totalFee.intValue());
	输出:212502
	
    BigDecimal fee2 = new BigDecimal(2125.02);
    BigDecimal totalFee2=fee2.multiply(new BigDecimal(100));
    Double totfee=totalFee2.doubleValue();
    System.out.println(totfee.intValue());
    输出:212502
    
    BigDecimal fee1 = new BigDecimal(2125.02);
    BigDecimal totalFee1=fee1.multiply(new BigDecimal(100));
    System.out.println(totalFee1.intValue());
	输出:212501
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值