如何在Java中格式化数字? [英] How do I format a number in Java?

查看:143
本文介绍了如何在Java中格式化数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Java中格式化数字?

什么是最佳实践?

How do I format a number in Java?
What are the "Best Practices"?

我需要先舍入一个数字吗?我格式化了吗?

Will I need to round a number before I format it?


32.302342342342343 => 32.30

.7323 => 0.73

等。

推荐答案

此主题中,有不同的方法:

double r = 5.1234;
System.out.println(r); // r is 5.1234

int decimalPlaces = 2;
BigDecimal bd = new BigDecimal(r);

// setScale is immutable
bd = bd.setScale(decimalPlaces, BigDecimal.ROUND_HALF_UP);
r = bd.doubleValue();

System.out.println(r); // r is 5.12







f = (float) (Math.round(n*100.0f)/100.0f);







DecimalFormat df2 = new DecimalFormat( "#,###,###,##0.00" );
double dd = 100.2397;
double dd2dec = new Double(df2.format(dd)).doubleValue();

// The value of dd2dec will be 100.24

DecimalFormat()似乎是最有活力的方式它,在阅读其他代码时也很容易理解。

The DecimalFormat() seems to be the most dynamic way to do it, and it is also very easy to understand when reading others code.

这篇关于如何在Java中格式化数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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