格式,double的两位小数和在java中的整数的0 [英] Format, 2 decimal places for double and 0 for integer in java

查看:255
本文介绍了格式,double的两位小数和在java中的整数的0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图格式化一个双精确到2个小数位,如果它有分数,并关闭否则使用DecimalFormat



所以,我想实现下一个结果:

  100.123  - > 100.12 
100.12 - > 100.12
100.1 - > 100.10
100 - > 100

变量#1

  DecimalFormat(#,## 0.00)

100.1 - > 100.10

100 - > 100.00

变种#2

  DecimalFormat(#,## 0。##)

100 - > 100

100.1 - > 100.1

有什么想法在我的案例中选择?

解决方案

我唯一的解决方案是使用如果语句像这里提到: https://stackoverflow.com/a/39268176/6619441

  public static boolean isInteger(BigDecimal bigDecimal){
int intVal = bigDecimal.intValue();
return bigDecimal.compareTo(new BigDecimal(intVal))== 0;


public static String myFormat(BigDecimal bigDecimal){
String formatPattern = isInteger(bigDecimal)? #,## 0:#,## 0.00;
返回新的DecimalFormat(formatPattern).format(bigDecimal);

$ / code>

测试

  myFormat(new BigDecimal(100)); // 100 
myFormat(new BigDecimal(100.1)); // 100.10

如果有人知道更优雅的方式,请分享! b

I am trying to format a double to exact 2 decimal places if it has fraction, and cut it off otherwise using DecimalFormat

So, I'd like to achieve next results:

100.123 -> 100.12
100.12  -> 100.12
100.1   -> 100.10
100     -> 100

Variant #1

DecimalFormat("#,##0.00")

100.1 -> 100.10
but
100   -> 100.00

Variant #2

DecimalFormat("#,##0.##")

100   -> 100
but
100.1 -> 100.1

Have any ideas what pattern to choose in my case?

解决方案

The only solution i reached is to use if statement like was mentioned here: https://stackoverflow.com/a/39268176/6619441

public static boolean isInteger(BigDecimal bigDecimal) {
    int intVal = bigDecimal.intValue();
    return bigDecimal.compareTo(new BigDecimal(intVal)) == 0;
}

public static String myFormat(BigDecimal bigDecimal) {
    String formatPattern = isInteger(bigDecimal) ? "#,##0" : "#,##0.00";
    return new DecimalFormat(formatPattern).format(bigDecimal);
}

Testing

myFormat(new BigDecimal("100"));   // 100
myFormat(new BigDecimal("100.1")); // 100.10

If someone knows more elegant way, please share it!

这篇关于格式,double的两位小数和在java中的整数的0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆