java– 如何在十进制后只显示两个数字

java– 如何在十进制后只显示两个数字,第1张

概述我想在十进制后只显示两位数,我已经尝试但仍然在十进制后得到多位数:itemamount=Double.parseDouble(text_cost_code.getText().toString());txt_total.setText(newDecimalFormat("##.##").format(itemamount));edit_qty_code.addTextChangedListener(newTextWatcher(){

我想在十进制后只显示两位数,我已经尝试但仍然在十进制后得到多位数:

itemamount = Double.parseDouble(text_cost_code.getText().toString());txt_total.setText(new DecimalFormat("##.##").format(itemamount));edit_qty_code.addTextChangedListener(new TextWatcher() {public voID onTextChanged(CharSequence s, int start, int before,        int count) {// Todo auto-generated method stubif (!edit_qty_code.getText().toString().equals("")|| !edit_qty_code.getText().toString().equals("")) {itemquantity = Double.parseDouble(edit_qty_code.getText().toString());itemamount = Double.parseDouble(text_cost_code.getText().toString());txt_total.setText(new DecimalFormat("##.##").format (itemquantity * itemamount));} else { txt_total.setText("0.00");}}

解决方法:

Rakesh使用此链接:

Show only two digit after decimal

  i=348842.  double i2=i/60000;  DecimalFormat dtime = new DecimalFormat("#.##");   i2= Double.valueOf(dtime.format(time));  v.setText(String.valueOf(i2));
总结

以上是内存溢出为你收集整理的java – 如何在十进制后只显示两个数字全部内容,希望文章能够帮你解决java – 如何在十进制后只显示两个数字所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106399.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存