道家人 发表于 2024-8-16 16:34:17

Java中金额转换处理(转大写,三位一逗)

一、金额大写

public static String convertChinese(BigDecimal amonut) {
      String money = amonut.setScale(2,BigDecimal.ROUND_HALF_UP).toPlainString();
      // 过滤空
      if (money == null || "".equals(money)) {
            return "";
      }
      StringBuilder res = new StringBuilder();
      String[] splitStr = money.split("\\.");
      if (splitStr.length > 2) {
            throw new RuntimeException("输入的参数不是数字!");
      }
      String front = splitStr;
      // 用于判定0的显示
      boolean isZero = true;
      if (front.length() > unit.length) {
            throw new RuntimeException("输入的参数大于万亿!");
      }
      for (int i = 0; i < front.length(); i++) {
            // 整数位处理
            int dw = front.length() - i - 1;
            // 用ASCII码获得数字
            int index = (front.charAt(i) - '0');
         
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Java中金额转换处理(转大写,三位一逗)