用java表示人民币的大写转换

/**
 * @(#)RMB.java
 *
 * RMB application
 *
 * @author 
 * @version 1.00 2013/3/20
 */
 
/**
 * @(#)RMB.java
 *
 * RMB application
 * 
 * @author 
 * @version 1.00 2013/3/20
 */
 
import javax.swing.*;
public class RMB {
    
 public static String toString(double x)       //将x表示的金额转换成中文大写形式
    {
        String yuan="亿千百拾万千百拾元角分";         
        String digit="零壹贰叁肆伍陆柒捌玖";     //字符串长度digit.length()为10
        String result="";
        int y=(int)(x*100);
        int i=yuan.length()-1;  
        boolean flag  = true;
       while(y > 0)
       {
             if(y == 1000)
             {
                 result = "拾元整"+result;
                 y = 0;
             }
             else
             {
                if(y%100 == 0 && i == yuan.length()-1)
                 {
                     result = "" + "整" +result;
                   i = i - 2;
                   y = y / 100;
                 }
                else 
                {
                    if(y%10 == 0 && flag)
                  {
                       result = "" + digit.charAt(0) + result;
                      flag = false;
                      i --; 
                    y = y / 10;
                   }
                   else
                  {
                      if(y%10==0 && !flag)
                      { 
                            i --;
                            y = y / 10;
                       }
                      else if(y%10 != 0)
                      {
                      result = ""+digit.charAt(y%10)+yuan.charAt(i)+result;
                      i --; 
                      y = y / 10;
                      }
                   }
                }
             }
        }
       return result;
    }

    public static void main(String args[]) 
    {
        double x;
        x = Double.parseDouble(JOptionPane.showInputDialog("请输入存款金额:"));
        JOptionPane.showMessageDialog(null,RMB.toString(x),"你存入帐户的金额是:",1);
    }
}

 

转载于:https://www.cnblogs.com/sssss/archive/2013/03/28/2987529.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
//ChangeRMB.java /** * * programmed by HuangHeliang * 2009.04.15 10:20:51 * */ //package com.avtech.hhl; import java.io.*; public final class ChangeRMB { //每个数字对应的大写 private static final String[] num = { "零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖", }; //从低到高排列的单位 private static final String[] bit = { "圆", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿", "拾", "佰", "仟", "万", "拾", "佰", "仟", "亿" }; //金额里面的角和分 private static final String[] jf={ "角","分" }; /** * 处理金额的整数部分,返回"...圆整" * @param integer * @return String * @throws Exception */ public static String praseUpcaseRMB(String integer)throws Exception{ StringBuilder sbdr=new StringBuilder(""); int j=integer.length(); if(j>bit.length){ throw new Exception("\n只能处理亿万亿以内的数据(含亿万亿)!"); } char[] rmb=integer.toCharArray(); for (int i = 0; i 壹佰亿陆仟伍佰万肆仟伍佰捌拾叁圆零伍分 */ if(bit[bitLocate].equals("仟")){ String s=sbdr.toString(); if(!s.endsWith(bit[bitLocate+1]) && s.length()>0){ if (s.endsWith(num[0])) { sbdr.deleteCharAt(sbdr.length() - 1); } sbdr.append(bit[bitLocate+1]); } } sbdr.append(num[numLocate]); sbdr.append(bit[bitLocate]); }//end for /* * 去掉结尾"零"后,补全 */ if(sbdr.toString().endsWith(num[0])){ sbdr.deleteCharAt(sbdr.length()-1); sbdr.append("圆整"); }else{ sbdr.append("整"); } return sbdr.toString(); } /** * 处理带小数的金额,整数部分交由上一个方法处理,小数部分自己处理 * @param integer * @param decimal * @return String * @throws Exception */ public static String praseUpcaseRMB(String integer, String decimal)throws Exception{ String ret=ChangeRMB.praseUpcaseRMB(integer); ret=ret.split("整")[0]; //处理整数部分 StringBuilder sbdr=new StringBuilder(""); sbdr.append(ret); char[] rmbjf=decimal.toCharArray(); for(int i=0;i rmbDouble){ theInt-=1; } double theDecimal=rmbDouble-theInt; String integer=new Long((long)theInt).toString(); String decimal=""+Math.round(theDecimal*100); if(decimal.equals("0")){ result=ChangeRMB.praseUpcaseRMB(integer); }else{ result=ChangeRMB.praseUpcaseRMB(integer, decimal); } return result; } public static void main(String[] args) throws Exception{ System.out.print("输入小写人民币金额:"); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String in = br.readLine(); String result=ChangeRMB.doChangeRMB(in); System.out.println("\n"+"------------转换结果------------"); System.out.println(result); double d=54628569856.68; String ret=ChangeRMB.doChangeRMB(d); System.out.println("\n"+"------------转换结果------------"); System.out.println(ret); } }

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值