小数点后 2 位的浮点数
我将在 android 中格式化浮点数,并在点后添加 2 位数字。 我搜索一个示例,但没有找到。
有人可以帮助我吗?
I will Format a Floating Point Number in android with 2 Digits after the point.
I search for a Example but i din´t find one.
Can some one help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以使用
DecimalFormat
You can also use
DecimalFormat
在上面的答案中,它总是会返回 2 个十进制
示例,其中 String.format("%.02f", f)
2.5555 -> 2.55
2.5 --> 2.50
但是你需要为 2.5 得到 2.50 吗?
为了避免得到过多的 0,你可以使用这个解决方案
In answer above it always will return 2 deciaml
examples with String.format("%.02f", f)
2.5555 -> 2.55
2.5 -> 2.50
but do you need to get 2.50 for 2.5?
for avoid to get excessive 0, you can use this solution