天道不一定酬所有勤
但是,天道只酬勤

java BigDecimal返回值不为0.00的解决办法

设置了实体类,不能解决。也设置了其他方法还是不能解决。

最后解决了,上代码:

 DecimalFormat decimalFormat = new DecimalFormat("0.00");
 queryPosIndexMoneyInfo.setDealerIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getDealerIcomeMoney())));
 queryPosIndexMoneyInfo.setFactoryIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getFactoryIcomeMoney())));
 queryPosIndexMoneyInfo.setLastDealerIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getLastDealerIcomeMoney())));
 queryPosIndexMoneyInfo.setLastFactoryIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getLastFactoryIcomeMoney())));

直接看加粗的代码

未经允许不得转载:java技术小栈 » java BigDecimal返回值不为0.00的解决办法
分享到

评论 抢沙发