RMB转换大写

public class RMB{


private final static String[] STR_NUMBER = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖" };

private final static String[] STR_UNIT = { "", "拾", "佰", "仟", "万", "拾","佰", "仟", "亿", "拾", "佰", "仟" };// 整数单位

private final static String[] STR_UNIT2 = { "角", "分", "厘" };// 小数单位

public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner scan= new Scanner(System.in);

System.out.println("Please input a number: ");

String convert=convert(scan.nextDouble());

System.out.println(convert);

}

public static boolean IsNumber(String str){

char[] c=str.toCharArray();

for(int i=0;i<c.length;i++){

if(Character.isDigit(c[i])){

}else{

return false;

}

}

return true;

}

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("number is too big,can not be convert!");

return "";

}

}

String point="";

if(strNum.indexOf(".")!=-1){

point="元";

}else{

point="元整";

}

String result=getInteger(strNum)+point+getDecimal(strNum);

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=numReplace(num,"零拾","零");

num=numReplace(num,"零佰","零");

num=numReplace(num,"零仟","零");

num=numReplace(num,"零万","万");

num=numReplace(num,"零亿","亿");

num=numReplace(num,"零零","零");

num=numReplace(num,"亿万","亿");

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){

return "";

}

num = num.substring(num.indexOf(".") + 1);

num = new StringBuffer(num).reverse().toString();

StringBuffer temp = new StringBuffer();

for (int i = 0; i < num.length(); i++){

temp.append(STR_NUMBER[num.charAt(i) - 48]);

temp.append(STR_UNIT2[i]);

}

num = temp.toString();

num = numReplace(num, "零角", "零");

num = numReplace(num, "零分", "零");

num = numReplace(num, "零厘", "零");

num = numReplace(num, "零零", "零");

if (num.lastIndexOf("零") == num.length() - 1){

num = num.substring(0, num.length() - 1);

}

return num;

}

public static String numReplace(String num, String oldStr, String newStr){

while(true){

if (num.indexOf(oldStr) == -1){

break;

}

num = num.replaceAll(oldStr, newStr);

}

return num;

}


}


转载于:https://my.oschina.net/u/2553223/blog/613035

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值