Java中金額數字轉換爲大寫數字

注:該代碼來自於別人,我引入進來並修改了裏面的幾個bug.如今寫進個人博客裏,以便於往後查看,和爲其它博友們提供方便java

修改bug地方:1.金額爲0時,不加整。之前是零元整,如今是零元    2.修改"分", "角", "元","萬", "億","兆"位不會出現零app

package com.zbx.bs.common.util;
import java.math.BigDecimal;設計

/**ci

* 數字轉換爲漢語中人民幣的大寫<br>get

博客

* @author deanit

*/class

public class NumberToCN {import

/**
* 漢語中數字大寫
*/
private static final String[] CN_UPPER_NUMBER = { "零", "壹", "貳", "叄", "肆", "伍", "陸", "柒", "捌", "玖" };
/**
* 漢語中貨幣單位大寫,這樣的設計相似於佔位符
*/
private static final String[] CN_UPPER_MONETRAY_UNIT = { "分", "角", "元", "拾", "佰", "仟", "萬", "拾", "佰", "仟", "億", "拾",
"佰", "仟", "兆", "拾", "佰", "仟" };
/**
* 特殊字符:整
*/
private static final String CN_FULL = "整";
/**
* 特殊字符:負
*/
private static final String CN_NEGATIVE = "負";
/**
* 金額的精度,默認值爲2
*/
private static final int MONEY_PRECISION = 2;
/**
* 特殊字符:零元整
*/
private static final String CN_ZEOR_FULL = "零元";
bug

/**
* 把輸入的金額轉換爲漢語中人民幣的大寫
*
* @param numberOfMoney
* 輸入的金額
* @return 對應的漢語大寫
*/
public static String number2CNMontrayUnit(BigDecimal numberOfMoney) {
StringBuffer sb = new StringBuffer();
// 返回-1:表示該數小於0 0:表示該數等於0 1:表示該數大於0
int signum = numberOfMoney.signum();
// 零元的狀況
if (signum == 0) {
return CN_ZEOR_FULL;
}
// 這裏會進行金額的四捨五入
long number = numberOfMoney.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 (numIndex != 0 && numIndex != 1 && numIndex != 2
&& numIndex != 6 && numIndex != 10 && numIndex != 14) {
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);

}// 除了0.00其餘數據都要帶特殊字符:整

sb.append(CN_FULL); return sb.toString(); } public static void main(String[] args) { double money = 8880044841.10; BigDecimal numberOfMoney = new BigDecimal(money); System.out.println("你輸入的金額爲:【" + money + "】 #--# [" + NumberToCN.number2CNMontrayUnit(numberOfMoney).toString() + "]"); }}

相關文章
相關標籤/搜索