Java 数字的相关处理工具类

import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.text.NumberFormat;

/**
 * 数字处理工具类
 * @author zhengyingshun
 * @Data 2017年9月26日
 */
public class NumUtil {

    /**
     * 向下取整
     * @param n
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static int floor(double n) {
        return (int) Math.floor(n);
    }

    /**
     * 向上取整
     * @param n
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static int ceil(double n) {
        return (int) Math.ceil(n);
    }

    /**
     * 四舍五入取整
     * @param n
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static int round(double n) {
        return (int) Math.round(n);
    }

    /**
     * 四舍五入取scale位小数
     * @param e
     * @param scale
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static double scaleRound(double e, int scale) {
        return new BigDecimal(e).setScale(scale, BigDecimal.ROUND_HALF_UP).doubleValue();
    }

    /**
     * 四舍五入取scale位小数
     * @param e
     * @param scale
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static String scaleRoundStr(double e, int scale) {
        return scaleRound(e, scale) + "";
    }

    /**
     * 保留scale位小数
     * @param e
     * @param scale
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static double scaleFloor(double e, int scale) {
        return new BigDecimal(e).setScale(2, RoundingMode.DOWN).doubleValue();
    }

    /**
     * 保留scale位小数
     * @param e
     * @param scale
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static String scaleFloorStr(double e, int scale) {
        return scaleFloorStr(e, scale) + "";
    }

    /**
     * 求log(x)(y),利用换底公式
     * @param x 底
     * @param y
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static double log(double x, double y) {
        return Math.log(y) / Math.log(x);
    }

    /**
     * 去掉小数点后无效的0
     * @param e
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static String subZeroAndDot(double e) {
        NumberFormat nf = NumberFormat.getInstance();
        return nf.format(e);
    }

    /**
     * 去掉小数点后无效的0
     * @param e
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static String subZeroAndDot(String e) {
        NumberFormat nf = NumberFormat.getInstance();
        return nf.format(e);
    }

    /**
     * 将double格式化为指定小数位的String,不足小数位用0补全
     * @param v
     * @param scale
     * @return
     * @author zhengyingshun
     * @Data 2017年9月26日
     */
    public static String roundByScale(double v, int scale) {
        if (scale < 0) {
            throw new IllegalArgumentException("The scale must be a positive integer or zero");
        }
        if (scale == 0) {
            return new DecimalFormat("0").format(v);
        }
        String formatStr = "0.";
        for (int i = 0; i < scale; i++) {
            formatStr = formatStr + "0";
        }
        return new DecimalFormat(formatStr).format(v);
    }

}
/** * @project: WebProjectUtil * @class: NumberUtil * @describe: 此工具类用来处理数字方面的逻辑, * 如返回指定位数的随机数字、Double的加减乘除精确运算、指定位数数字用“0”补齐 * @autho: Administrator * @date: 2013-6-7 下午02:26:27 * @alter: Administrator * @alterDate: 2013-6-7 下午02:26:27 * @alterRemark: * @version V1.0 */ public class NumberUtil { private static final int DEF_DIV_SCALE = 2; /** * @return 返回12位随机数 */ public static String randomNumber() { } /** * @param parm * @return 返回指定位数随机数 */ public static String randomNumber(int parm) { } /** * * 两个Double数相加 * * @param v1 * @param v2 * @return Double */ public static Double add(Double v1, Double v2) { } /** * * 两个Double数相减 * * @param v1 * @param v2 * @return Double */ public static Double sub(Double v1, Double v2) { } /** * * 两个Double数相乘 * * @param v1 * @param v2 * @return Double */ public static Double mul(Double v1, Double v2) { } /** * * 两个Double数相除 * * @param v1 * @param v2 * @return Double */ public static Double div(Double v1, Double v2) { } /** * * 两个Double数相除,并保留scale位小数 * * @param v1 * @param v2 * @param scale * @return Double */ public static Double div(Double v1, Double v2, int scale) { } /** * 返回指定Double的负数 * @param v1 * @return */ public static Double neg(Double v1) { /** * @Title: toFixdLengthString * @Description: 将字符串用符号填充位数 * @param str 源字符串 * @param fixdlenth 位数 * @return String * @throws */ public static String toFixdLengthString(String str, int fixdlenth) { } /** * @Title: toFixdLengthString * @Description: 将数字用“0”填充位数 * @param num * @param fixdlenth * @return String * @throws */ public static String toFixdLengthString(int num, int fixdlenth) { } /** * @Title: generateSpaceString * @Description: 得到指定位数占位符 * @param length * @return String * @throws */ public static String generateSpaceString(int length) { } /** * @Title: generateZeroString * @Description: 得到指定位数的“0”的占位符 * @param length * @return String * @throws */ public static String generateZeroString(int length) { } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值