java 数字转汉语读音的程序

如输入12345,输出:一万二千三百四十五app

public static void numToVoice(int num,StringBuffer stringBuffer){
    Map<Integer,String> map = new HashMap<Integer,String>();
    map.put(1,"一");
    map.put(2,"二");
    map.put(3,"三");
    map.put(4,"四");
    map.put(5,"五");
    map.put(6,"六");
    map.put(7,"七");
    map.put(8,"八");
    map.put(9,"九");

    map.put(10,"十");
    map.put(20,"百");
    map.put(30,"千");
    map.put(40,"万");
    map.put(50,"十万");

    String numstr = num + "";
    int pos = numstr.length();
    if(pos != 1){
        int high = num/(int)Math.pow(10,pos-1);
        num = num%(int)Math.pow(10,pos-1);
        int key = (pos-1)*10;
        stringBuffer.append(map.get(high)).append(map.get(key));
        numToVoice(num,stringBuffer);
    }else{
        stringBuffer.append(map.get(num));
        System.out.println(stringBuffer);
    }

}

 

程序还有瑕疵,万以上就不行了,但愿你们帮我完成,不慎感激!我本身琢磨出来的话,也会完善,谢谢!get

相关文章
相关标签/搜索