JAVA将金额数字转换为中文大写的金额



    cn.hutool
    hutool-all
    


public static void main(String[] args) {
    String money = "12345.68";
    System.err.println(NumberChineseFormatter.format(Double.parseDouble(money), true, true));
}

你可能感兴趣的:(java,python,开发语言)