java 1000转_Java中如何把 "¥1001" 转换表示为 "一千零一"

展开全部

自己写一个类package com.test;

import java.math.BigDecimal;

import java.text.NumberFormat;

/**

*

* @author zxb

* 将数字转换为中文大写的汉字  满足简单使用的四舍五入的法则

* 比如:120023.235---->>>>>>>>壹拾贰万零贰拾32313133353236313431303231363533e78988e69d8331333332636332叁圆贰角肆分

* 类似于数据库的函数转换功能 学习中

*/

public class MoneyToChinese {

public static void main(String[] args) {

double d =30000000034.895d;

try {

System.out.println(toChineseCharacter(d));

} catch (Exception e) {

e.printStackTrace();

}

}

/**

*

* @param money

* @return

* @throws Exception

*/

public static String toChineseCharacter(double money) throws Exception {

double temp = 0;

long l = Math.abs((long) money);

BigDecimal bil = new BigDecimal(l);

if (bil.toString().length() > 14) {

throw new Exception("数字太大,计算精度不够!");

}

NumberFormat nf = NumberFormat.getInstance();

nf.setMaximumFractionDigits(2);

int i = 0;

String result = "", sign = "", tempStr = "", temp1 = "";

String[] arr = null;

sign = money 

temp = Math.abs(money);

if (l == temp) {

result = doForEach(new BigDecimal(temp).multiply(new BigDecimal(100)).toString(),

sign);

} else {

nf.setMaximumFractionDigits(2);

temp1 = nf.format(temp);

arr = temp1.split(",");

while (i 

tempStr += arr[i];

i++;

}

BigDecimal b = new BigDecimal(tempStr);

b = b.multiply(new BigDecimal(100));

tempStr=b.toString();

if(tempStr.indexOf(".")==tempStr.length()-3){

result = doForEach(tempStr.substring(0,

tempStr.length() - 3), sign);

}else{

result = doForEach(tempStr.substring(0,

tempStr.length() - 3)+"0", sign);

}

}

return result;

}

/**

*

* @param result

* @param sign

* @return

*/

public static String doForEach(String result, String sign) {

//System.out.println("打印最后处理数:" + result);

String flag = "", b_string = "";

String[] arr = { "分", "角", "圆", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿",

"拾", "佰", "仟", "万", "拾" };

String[] arr1 = { "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" };

boolean zero = true;

int len = 0, i = 0, z_count = 0;

if (result == null) {

len = 0;

} else {

len = result.length();

}

while (i 

flag = result.substring(i, i + 1);

i++;

if (flag.equals("0")) {

if (len - i == 10 || len - i == 6 || len - i == 2 || len == i) {

if (zero) {

b_string = b_string.substring(0,

(b_string.length()) - 1);

zero = false;

}

if (len - i == 10) {

b_string = b_string + "亿";

}

if (len - i == 6) {

b_string = b_string + "万";

}

if (len - i == 2) {

b_string = b_string + "圆";

}

if (len == i) {

b_string = b_string + "整";

}

z_count = 0;

} else {

if (z_count == 0) {

b_string = b_string + "零";

zero = true;

}

z_count = z_count + 1;

}

} else {

b_string = b_string + arr1[Integer.parseInt(flag) - 1]

+ arr[len - i];

z_count = 0;

zero = false;

}

}

b_string = sign + b_string;

return b_string;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值