欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

金额---元转分

程序员文章站 2022-07-14 22:54:37
...
/**
     * 功能描述:金额字符串转换:单位元转成单分
     *
     * @param s 传入需要转换的金额字符串
     * @return 转换后的金额字符串
     */
    public static String yuanToFen(String s) {
        if (StringUtils.isBlank(s)) {
            return "0";
        }
        int posIndex = -1;
        String str = "";
        StringBuilder sb = new StringBuilder();
        if (s != null && s.trim().length() > 0 && !s.equalsIgnoreCase("null")) {
            posIndex = s.indexOf(".");
            if (posIndex > 0) {
                int len = s.length();
                if (len == posIndex + 1) {
                    str = s.substring(0, posIndex);
                    if (str == "0") {
                        str = "";
                    }
                    sb.append(str).append("00");
                } else if (len == posIndex + 2) {
                    str = s.substring(0, posIndex);
                    if (str == "0") {
                        str = "";
                    }
                    sb.append(str).append(s.substring(posIndex + 1, posIndex + 2)).append("0");
                } else if (len == posIndex + 3) {
                    str = s.substring(0, posIndex);
                    if (str == "0") {
                        str = "";
                    }
                    sb.append(str).append(s.substring(posIndex + 1, posIndex + 3));
                } else {
                    str = s.substring(0, posIndex);
                    if (str == "0") {
                        str = "";
                    }
                    sb.append(str).append(s.substring(posIndex + 1, posIndex + 3));
                }
            } else {
                sb.append(s).append("00");
            }
        } else {
            sb.append("0");
        }
        str = removeZero(sb.toString());
        if (str != null && str.trim().length() > 0 && !str.trim().equalsIgnoreCase("null")) {
            return str;
        } else {
            return "0";
        }
    }

    /**
     *
     *  功能描述:去除字符串首部为"0"字符

     *  @param  str  传入需要转换的字符串
     *  @return  转换后的字符串
     */
    public  static  String  removeZero(String  str){
        char    ch;
        String  result  =  "";
        if(str  !=  null  &&  str.trim().length()>0  &&  !str.trim().equalsIgnoreCase("null")){
            try{
                for(int  i=0;i<str.length();i++){
                    ch  =  str.charAt(i);
                    if(ch  !=  '0'){
                        result  =  str.substring(i);
                        break;
                    }
                }
            }catch(Exception  e){
                result  =  "";
            }
        }else{
            result  =  "";
        }
        return  result;

    }