gpt4 book ai didi

java - JTable 中对所有 NULL 数据求和的问题

转载 作者:行者123 更新时间:2023-12-02 09:09:41 25 4
gpt4 key购买 nike

我正在使用Java。我在 JTable 中有各种数据。我希望对除 NULL 之外的所有内容进行求和。

float sum_OverTime_C = 0;
for (int i = 0; i < jTable_3.getRowCount(); i++) {
sum_OverTime_C = sum_OverTime_C + Float.parseFloat(jTable_3.getValueAt(i, 1).toString());
}
jLabel_Total_OverTime.setText(Float.toString(sum_OverTime_C));

最佳答案

求和之前必须检查该值是否为null,例如:

if(jTable_3.getValueAt(i, 1) != null){ 
sum_OverTime_C += Float.parseFloat(jTable_3.getValueAt(i, 1).toString());
}

关于java - JTable 中对所有 NULL 数据求和的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59520830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com