方法1:用Math.round計算,這裏返回的數字格式的.java
float price=89.89; int itemNum=3; float totalPrice=price*itemNum; float num=(float)(Math.round(totalPrice*100)/100);//若是要求精確4位就*10000而後/10000
方法2:用DecimalFormat 返回的是String格式的.該類對十進制進行全面的封裝.像%號,千分位,小數精度.科學計算.orm
float price=1.2; DecimalFormat decimalFormat=new DecimalFormat(".00");//構造方法的字符格式這裏若是小數不足2位,會以0補足. String p=decimalFomat.format(price);//format 返回的是字符串
我的以爲在前臺顯示金額方面的仍是用第二種方式.理由很簡單是字符串格式的.blog