本文介绍了java.math.BigDecimal不能强制转换为java.lang.String吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图添加数据类型(货币)的行值,其中像这样在Jtable中自动形成十进制后的零55.000028.000060.000020.000050.0000
I am trying to add row values of datatype(money) in which zeros after decimal are automatically formed in Jtable like these55.000028.000060.000020.000050.0000
在运行时日志中显示此错误
on runtime log showing this error
这是来自Jtable的行添加代码
Here is the code for rows addition from Jtable
double total = 0;
for(int i = 0; i<table.getRowCount(); i++){
double amount = Double.parseDouble((String) table.getValueAt(1, 6) );
total+=amount;
}
totalSum.setText(String.valueOf(total));
*
- *
推荐答案
尝试如下操作:
BigDecimal total = BigDecimal.ZERO;
for (int i = 0; i < table.getRowCount(); ++i) {
final BigDecimal amount = (BigDecimal)table.getValueAt(i, 6);
total = total.add(amount);
}
totalSum.setText(total.toString());
这篇关于java.math.BigDecimal不能强制转换为java.lang.String吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!