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

com.loocme.sys.util.NumberUtil Maven / Gradle / Ivy

There is a newer version: 7.1.11
Show newest version
package com.loocme.sys.util;

import java.text.DecimalFormat;

/**
 * 数字处理帮助类
 * 
 * @author loocme
 * 
 */
public class NumberUtil
{

    /**
     * 获取四舍五入后的数字,保留两位小数
     * 
     * @param value 源数
     * @return 四舍五入后的数
     */
    public static double decimal(double value)
    {
        return decimal(value, 2);
    }

    /**
     * 获取四舍五入后的数字
     * 
     * @param value
     *            源数
     * @param scale
     *            精度
     * @return 四舍五入后的数
     */
    public static double decimal(double value, int scale)
    {
        DecimalFormat df = new DecimalFormat();
        df.setMaximumFractionDigits(scale);
        df.setMinimumFractionDigits(scale);
        return StringUtil.getDouble(df.format(value));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy