字符串:货币金额大写格式

package based.string;

import java.text.DecimalFormat;
import java.util.Scanner;

public class ConvertMoney {
	public static final String STR_UNIT[] = { "", "拾", "佰", "仟", "万", "拾",
			"佰", "仟", "亿", "拾", "佰", "仟" };
	public static final String STR_NUMBER[] = { "零", "壹", "贰", "叁", "肆", "伍",
			"陆", "柒", "捌", "玖" };
	public static final String STR_UNIT1[] = { "毛", "分", "厘" };

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		System.out.println("请输入一个金额");
		String convert = convert(scan.nextDouble());
		System.out.println(convert);
	}

	public static String convert(double d) {
		DecimalFormat df = new DecimalFormat("#0.###");
		String strNum = df.format(d);
		if (strNum.indexOf(".") != -1) {
			String num = strNum.substring(0, strNum.indexOf("."));
			if (num.length() > 12) {
				System.out.println("数字太大,不能完成转换");
			}
		}
		String point = "";
		if(strNum.indexOf(".")!=-1){
			point="元";
		}else{
			point="元整";
		}
		String result = getInteger(strNum) + point + getDecimal(strNum);
		if(result.startsWith("元整")){
			 result="零元";
		 }
		 if(result.startsWith("元")){
		 result=result.substring(1,result.length());
		 }
		 return result;
	}

	public static String getInteger(String num) {
		if (num.indexOf(".") != -1) {
			num = num.substring(0, num.indexOf("."));
		}
		num = new StringBuffer(num).reverse().toString();
		StringBuffer temp = new StringBuffer();
		for (int i = 0; i < num.length(); i++) {
			temp.append(STR_UNIT[i]);
			temp.append(STR_NUMBER[num.charAt(i) - 48]);
		}
		num = temp.reverse().toString();
		num = num.replaceAll("零元", "元");
		num = num.replaceAll("零拾", "");
		num = num.replaceAll("零佰", "");
		num = num.replaceAll("零仟", "");
		num = num.replaceAll("零万", "万");
		num = num.replaceAll("零亿", "亿");
		num = num.replaceAll("亿万", "亿");
		if (num.lastIndexOf("零") == num.length() - 1) {
			num = num.substring(0, num.length() - 1);
		}
		return num;
	}

	public static String getDecimal(String num) {
		if (num.indexOf(".") != -1) {
			num = num.substring(num.indexOf(".") + 1, num.length());
		} else
			return "";
		StringBuffer temp = new StringBuffer();
		for (int i = 0; i < num.length(); i++) {
			temp.append(STR_NUMBER[num.charAt(i) - 48]);
			temp.append(STR_UNIT1[i]);
			}
		num=temp.toString();
		num = num.replaceAll("零毛", "");
		num = num.replaceAll("零分", "");
		num = num.replaceAll("零厘", "");
		return num;
	}
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值