金額大小寫轉化_金額工具類

1、金額逗號分隔

public class DecimalUtils {

    public static final DecimalFormat FORMAT = new DecimalFormat("#,##0.00");

    /**
     * @param decimal  71015000009826
     * @return 71,015,000,009,826.00
     */
    public static String format(BigDecimal decimal ,DecimalFormat format) {
        return format.format(decimal);
    }



}

2、金額大小寫轉化

package com.fintech.scf.utils;

import java.math.BigDecimal;

/**
 * @author HealerJean
 * @ClassName MoneyUtils
 * @date 2019/8/14  20:41.
 * @Description 傳入的金額單位爲分
 */
public class MoneyUtils {

    /** 金額的精度,默認值爲2 四捨五入 */
    private static final int MONEY_PRECISION = 2;
    private static final String[] CN_UPPER_NUMBER = {"零", "壹", "貳", "叄", "肆", "伍", "陸", "柒", "捌", "玖"};
    private static final String[] CN_UPPER_MONETRAY_UNIT = {"分", "角", "元", "拾", "佰", "仟", "萬", "拾", "佰", "仟", "億", "拾", "佰", "仟", "兆", "拾", "佰", "仟"};
    private static final String CN_NEGATIVE = "負";
    private static final String CN_FULL = "整";
    private static final String CN_ZEOR_FULL = "零元整";

    /**
     * @param money 傳入的單位爲元
     * @return
     */
    public static String toUpper(BigDecimal money) {
        StringBuffer sb = new StringBuffer();
        int signum = money.signum();
        // 零元整的情況
        if (signum == 0) {
            return CN_ZEOR_FULL;
        }
        //這裏會進行金額的四捨五入
        long number = money.movePointRight(MONEY_PRECISION) .setScale(0, 4).abs().longValue();
        // 得到小數點後兩位值
        long scale = number % 100;
        int numUnit = 0;
        int numIndex = 0;
        boolean getZero = false;
        // 判斷最後兩位數,一共有四中情況:00 = 0, 01 = 1, 10, 11
        if (!(scale > 0)) {
            numIndex = 2;
            number = number / 100;
            getZero = true;
        }
        if ((scale > 0) && (!(scale % 10 > 0))) {
            numIndex = 1;
            number = number / 10;
            getZero = true;
        }
        int zeroSize = 0;
        while (true) {
            if (number <= 0) {
                break;
            }
            // 每次獲取到最後一個數
            numUnit = (int) (number % 10);
            if (numUnit > 0) {
                if ((numIndex == 9) && (zeroSize >= 3)) {
                    sb.insert(0, CN_UPPER_MONETRAY_UNIT[6]);
                }
                if ((numIndex == 13) && (zeroSize >= 3)) {
                    sb.insert(0, CN_UPPER_MONETRAY_UNIT[10]);
                }
                sb.insert(0, CN_UPPER_MONETRAY_UNIT[numIndex]);
                sb.insert(0, CN_UPPER_NUMBER[numUnit]);
                getZero = false;
                zeroSize = 0;
            } else {
                ++zeroSize;
                if (!(getZero)) {
                    sb.insert(0, CN_UPPER_NUMBER[numUnit]);
                }
                if (numIndex == 2) {
                    if (number > 0) {
                        sb.insert(0, CN_UPPER_MONETRAY_UNIT[numIndex]);
                    }
                } else if (((numIndex - 2) % 4 == 0) && (number % 1000 > 0)) {
                    sb.insert(0, CN_UPPER_MONETRAY_UNIT[numIndex]);
                }
                getZero = true;
            }
            // 讓number每次都去掉最後一個數
            number = number / 10;
            ++numIndex;
        }
        // 如果signum == -1,則說明輸入的數字爲負數,就在最前面追加特殊字符:負
        if (signum == -1) {
            sb.insert(0, CN_NEGATIVE);
        }
        // 輸入的數字小數點後兩位爲"00"的情況,則要在最後追加特殊字符:整
        if (scale <= 0) {
            sb.append(CN_FULL);
        }
        return sb.toString();
    }

    public static void main(String[] args) {
        BigDecimal numberOfMoney = new BigDecimal("23000000.00");
        String s = toUpper(numberOfMoney);
        System.out.println("你輸入的金額爲:【" + numberOfMoney + "】   => " + s + " ");
    }
}

ContactAuthor

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章