将阿拉伯数字转化成大写的人民币数字

来源:互联网 发布:p2p网络小额信贷分类 编辑:程序博客网 时间:2024/04/28 21:49
将阿拉伯数字转化成大写的人民币数字
public String getNumberToRMB(String m)...
    String num 
= "零壹贰叁肆伍陆柒捌玖";
    String dw 
= "圆拾佰仟万亿";
    String mm[] 
= null;
    mm 
= m.split("/.");
    String money 
= mm[0];

    String result 
= num.charAt(Integer.parseInt("" + mm[1].charAt(0))) + "" +
        num.charAt(Integer.parseInt(
"" + mm[1].charAt(1))) + "";

    
for (int i = 0; i < money.length(); i++...
      String str 
= "";
      
int n = Integer.parseInt(money.substring(money.length() - i - 1,
                                               money.length() 
- i));
      str 
= str + num.charAt(n);
      
if (i == 0...
        str 
= str + dw.charAt(i);
      }

      
else if ( (i + 4% 8 == 0...
        str 
= str + dw.charAt(4);
      }

      
else if (i % 8 == 0...
        str 
= str + dw.charAt(5);
      }

      
else ...
        str 
= str + dw.charAt(i % 4);
      }

      result 
= str + result;
    }

    result 
= result.replaceAll("零([^亿万圆角分])""");
    result 
= result.replaceAll("亿零+万","亿零");
    result 
= result.replaceAll("零+""");
    result 
= result.replaceAll("零([亿万圆])""");
    result 
=result.replaceAll("壹拾","");
    
    
return result;
}