util工具类--用于补零或者人民币格式

package com.ezubo.global.util;

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

/**
 * Created by yyy on 2015-12-28.
 */
public class FormatUtil {
    public static final String RMB_FORMAT = "##,000.00";
    /**
     * num -- 数字
     * length -- 补充位数
     * @param num
     * @param length
     * @return
     */
    public static String leftpad(int num , int length){
        if((""+num).length() > length) throw new RuntimeException("length is not enough.");
        String res = String.format("%0"+length+"d" , num);
        return res;
    }

    //====================数字格式化=======================
    /*主要用于补零或者补空串或者格式化数据
    DecimalFormat的format用法
    0 ----- 代表一个数字(包含0)
    # ----- 代表一个数字,但不包含0
    . ----- 代表小数的分隔符的占位符
    , ----- 代表分组的分隔符的占位符
    - ----- 缺省负数的前缀*/
    //=====================数字格式化=======================


    /**
     * 将数字格式化成固定长度的字符串
     * @param decimal
     * @param format
     * @return
     */
    public static String leftpad(Long decimal ,String format){
        DecimalFormat decimalFormat = new DecimalFormat(format);
        return decimalFormat.format(decimal);
    }

    /**
     * 将数字格式化成固定长度的字符串
     * @param decimal
     * @param format
     * @return
     */
    public static String leftpad(Integer decimal  ,String format){
        DecimalFormat decimalFormat = new DecimalFormat(format);
        return decimalFormat.format(decimal);
    }

    /**
     * 将数字格式化成固定长度的字符串
     * @param decimal
     * @param format
     * @return
     */
    public static String leftpad(BigDecimal decimal , String format){
        if(decimal == null) decimal = BigDecimal.ZERO;
        DecimalFormat decimalFormat = new DecimalFormat(format);
        return decimalFormat.format(decimal);
    }

    public static void main(String[] args){
        System.out.println(NettyUtil.leftpad(12 , 2));
        System.out.println(NettyUtil.leftpad(12 , "00000000"));
        System.out.println(NettyUtil.leftpad(new BigDecimal(12) , "00000000"));
        System.out.println(NettyUtil.leftpad(1234567890l , NettyUtil.RMB_FORMAT));
    }
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值