|
@@ -1,5 +1,6 @@
|
|
|
package com.wechi.adweb.bridge.util;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.math.RoundingMode;
|
|
|
import java.text.NumberFormat;
|
|
|
|
|
@@ -8,24 +9,17 @@ import java.text.NumberFormat;
|
|
|
*/
|
|
|
public class NumberUtils {
|
|
|
|
|
|
- private static final NumberFormat DECIMAL_FORMAT = NumberFormat.getNumberInstance();
|
|
|
-
|
|
|
private static final NumberFormat PERCENTAGE_FORMAT = NumberFormat.getPercentInstance();
|
|
|
|
|
|
static {
|
|
|
- DECIMAL_FORMAT.setRoundingMode(RoundingMode.HALF_UP);
|
|
|
- // No grouping with ',' delimiter.
|
|
|
- DECIMAL_FORMAT.setGroupingUsed(false);
|
|
|
-
|
|
|
PERCENTAGE_FORMAT.setRoundingMode(RoundingMode.HALF_UP);
|
|
|
+ // No grouping with ',' delimiter.
|
|
|
PERCENTAGE_FORMAT.setGroupingUsed(false);
|
|
|
}
|
|
|
|
|
|
- public static String formatDecimal(double number, int fractionDigits) {
|
|
|
- DECIMAL_FORMAT.setMinimumFractionDigits(fractionDigits);
|
|
|
- DECIMAL_FORMAT.setMaximumFractionDigits(fractionDigits);
|
|
|
-
|
|
|
- return DECIMAL_FORMAT.format(number);
|
|
|
+ public static BigDecimal formatDecimal(double number, int fractionDigits) {
|
|
|
+ BigDecimal decimal = new BigDecimal(number);
|
|
|
+ return decimal.setScale(fractionDigits, RoundingMode.HALF_UP);
|
|
|
}
|
|
|
|
|
|
public static String formatPercentage(double number, int fractionDigits) {
|