博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数字工具类
阅读量:5021 次
发布时间:2019-06-12

本文共 4058 字,大约阅读时间需要 13 分钟。

package com.cjit.common.util;

import java.math.BigDecimal;

import java.text.DecimalFormat;
import java.text.NumberFormat;

/**

* 数字工具类
*
* @since Jun 13, 2008
*/
public class NumberUtils {

private NumberUtils() {

}

public static final String DEFAULT_DOUBLE_PATTERN = "#,##0.00";

public static final String DEFAULT_LONG_PATTERN = "#,##0";
public static final String DEFAULT_CURRENCY_PATTERN = "#,##0.00";
public static final String DEFAULT_PERCENT_PATTERN = "#,##0.00%";
public static final String DEFAULT_SEQNUMBER = "######000000";

/**

* 按标准化的数字表现方式格式化浮点型数字样式,默认格式("#,##0.00")
*
* @param d
* 被格式化的double型数字
*
* @return String 返回标准化的长型数字样式("#,##0.00")
* @since Jun 16, 2008
*/
public static String format(double d) {
return format(d, "#,##0.00");
}

/**

* 按标准化的数字表现方式格式化浮点型数字样式
*
* @param d
* 被格式化的double型数字
* @param pattern
* 格式化的模板
*
* @return String 返回标准化的长型数字样式(如####,##)
* @since Jun 16, 2008
*/
public static String format(double d, String pattern) {
if (pattern == null || "".equals(pattern)) {
return format(d);
} else {
DecimalFormat df = new DecimalFormat(pattern);
return df.format(d);
}
}

public static String format(BigDecimal bd, String pattern, int i) {

if (bd == null) {
return "";
}
if (i == 2) {
double d = new Double(bd.toString()).doubleValue();
DecimalFormat df = new DecimalFormat("#,##0.00");
return df.format(d);
} else if (i == 4) {
double d = new Double(bd.toString()).doubleValue();
DecimalFormat df = new DecimalFormat("#,##0.0000");
return df.format(d);
} else {
if (pattern == null || "".equals(pattern)) {
return bd.toString();
} else {
double d = new Double(bd.toString()).doubleValue();
DecimalFormat df = new DecimalFormat(pattern);
return df.format(d);
}
}
}
public static String format(BigDecimal bd, String pattern, int i,int j) {
if (bd == null) {
return "";
}
double d1 = new Double(bd.toString()).doubleValue();
DecimalFormat df1 = new DecimalFormat("#,##0.000000");
d1=new Double(df1.format(d1)).doubleValue()+0.000001;
df1 = new DecimalFormat("#,##0.00000");
double d2=new Double(df1.format(d1)).doubleValue()+0.00001;
DecimalFormat df2 = new DecimalFormat("#,##0.0000");
double d3=new Double(df2.format(d2)).doubleValue()+0.0001;
DecimalFormat df3 = new DecimalFormat("#,##0.000");
double d4=new Double(df3.format(d3)).doubleValue()+0.001;
DecimalFormat df4 = new DecimalFormat("#,##0.00");
return df4.format(d4);
}
/**
* 按标准化的数字表现方式格式化长型数字样式,默认格式(#,##0)
*
* @param number
* 被格式化的数字
*
* @return String 返回标准化的长型数字样式(#,##0)
* @since Jun 13, 2008
*/
public static String format(long l) {
return format(l, "#,##0");
}

/**

* 按标准化的数字表现方式格式化长型数字样式
*
* @param number
* 被格式化的数字
* @param pattern
* 格式化的模板
*
* @return String 返回标准化的长型数字样式(如####,##)
* @since Jun 13, 2008
*/
public static String format(long l, String pattern) {
if (pattern == null || "".equals(pattern)) {
return format(l);
} else {
DecimalFormat df = new DecimalFormat(pattern);
return df.format(l);
}
}

/**

* 格式化数字(浮点型),返回本地货币类型
*
* @param number
* 被格式化的数字
*
* @return String 返回标准化货币类型样式(如¥8,888.88)
* @since Jun 13, 2008
*/
public static String currencyFormat(double number) {
NumberFormat currencyFormat = NumberFormat.getCurrencyInstance();
return currencyFormat.format(number);
}

/**

* 格式化数字(整型),返回本地货币类型
*
* @param number
* 被格式化的数字
*
* @return String 返回标准化货币类型样式(如¥8,888)
* @since Jun 13, 2008
*/
public static String currencyFormat(long number) {
NumberFormat currencyFormat = NumberFormat.getCurrencyInstance();
return currencyFormat.format(number);
}

/**

* 格式化数字(整型),返回本地百分比类型
*
* @param number
* 被格式化的数字
*
* @return String 返回本地百分比类型(如150%)
* @since Jun 13, 2008
*/
public static String percentFormat(long number) {
NumberFormat percentFormat = NumberFormat.getPercentInstance();
return percentFormat.format(number);
}

/**

* 格式化数字(浮点型),返回本地百分比类型
*
* @param number
* 被格式化的数字
*
* @return String 返回本地百分比类型(如参数为0.5,返回50%)
* @since Jun 13, 2008
*/
public static String percentFormat(double number) {
NumberFormat percentFormat = NumberFormat.getPercentInstance();
return percentFormat.format(number);
}
}

转载于:https://www.cnblogs.com/zhao-long/p/6722274.html

你可能感兴趣的文章
Codeforces 887D Ratings and Reality Shows
查看>>
论文《A Generative Entity-Mention Model for Linking Entities with Knowledge Base》
查看>>
CentOS 6.7编译安装PHP 5.6
查看>>
Linux记录-salt分析
查看>>
Android Studio默认快捷键
查看>>
发布开源库到JCenter所遇到的一些问题记录
查看>>
第七周作业
查看>>
函数式编程与参数
查看>>
flush caches
查看>>
SSAS使用MDX生成脱机的多维数据集CUB文件
查看>>
ACM_hdu1102最小生成树练习
查看>>
MyBatis源码分析(一)--SqlSessionFactory的生成
查看>>
android中ListView点击和里边按钮或ImageView点击不能同时生效问题解决
查看>>
CTF常用工具之汇总
查看>>
java的面向对象 (2013-09-30-163写的日志迁移
查看>>
HDU 2191 【多重背包】
查看>>
51nod 1433 0和5【数论/九余定理】
查看>>
【AHOI2013复仇】从一道题来看DFS及其优化的一般步骤和数组分层问题【转】
查看>>
less 分页显示文件内容
查看>>
如何对数据按某列进行分层处理
查看>>