All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.creekmoon.excelUtils.converter.BigDecimalConverter Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package cn.creekmoon.excelUtils.converter;

import java.math.BigDecimal;

/**
 * @author JY
 */
public class BigDecimalConverter {


    /**
     * 浮点数值转换器
     *
     * @param str 119.12 或  1,112.99
     * @return
     */
    public static BigDecimal parse(String str) {
        str = str.replaceAll(",", "");
        return new BigDecimal(str);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy