资 源 简 介
//利用BigDecimal对象作为参数在format()中调用货币和百分比格式化 BigDecimal bigInterest = bigLoanAmount.multiply(bigInterestRate); //BigDecimal运算 NumberFormat currency = NumberFormat.getCurrencyInstance(); //建立货币格式化引用 NumberFormat percent = NumberFormat.getPercentInstance(); //建立百分比格式化用 percent.setMaximumFractionDigits(3); //百分比小数点最多3位}