金额大小写转换及金额保留小数点后两位

金额大小写转换

    private static final String UNIT = "万仟佰拾亿仟佰拾万仟佰拾元角分";
    private static final String DIGIT = "零壹贰叁肆伍陆柒捌玖";
    private static final double MAX_VALUE = 9999999999999.99D;

    public static String change(double v) {
        if (v < 0 || v > MAX_VALUE) {
            return "参数非法!";
        }
        long l = Math.round(v * 100);
        if (l == 0) {
            return "零元整";
        }
        String strValue = l + "";
        // i用来控制数
        int i = 0;
        // j用来控制单位
        int j = UNIT.length() - strValue.length();
        StringBuilder rs = new StringBuilder();
        boolean isZero = false;
        for (; i < strValue.length(); i++, j++) {
            char ch = strValue.charAt(i);
            if (ch == '0') {
                isZero = true;
                if (UNIT.charAt(j) == '亿' || UNIT.charAt(j) == '万' || UNIT.charAt(j) == '元') {
                    rs.append(UNIT.charAt(j));
                    isZero = false;
                }
            } else {
                if (isZero) {
                    rs.append("零");
                    isZero = false;
                }
                rs.append(DIGIT.charAt(ch - '0')).append(UNIT.charAt(j));
            }
        }
        String s = rs.toString();
        if (!s.endsWith("分")) {
            s = s + "整";
        }
        s = s.replaceAll("亿万", "亿");
        return s;
    }

金额保留小数点后两位

    public static String amtConvert(String amt) {
        if (null != amt && !"".equals(amt)) {
            BigDecimal b = new BigDecimal(amt);
            b = b.setScale(2, BigDecimal.ROUND_HALF_UP); //四舍五入
            return b.toString();
        } else {
            return "";
        }
    }

猜你喜欢

转载自www.cnblogs.com/lu51211314/p/10677251.html