0

我正在使用 Java bean 绑定来绑定 Jtable,其中 api 为整数或浮点值提供默认值,例如 0 或 0.0,如下所示。我想避免使用相应的默认值并将单元格设置为空,除了最后一个单元格值.

1        WW     88.0        88.0      1021021       340.0       
4        TT     55.0        55.0      1021021       340.0       
5        PP     66.0        66.0      1021021       340.0

                0            0          0           1020

2        gg     66.0        66.0      1021022       320.0       
3        LL     658.0       652.0     1021022       320.0

               0            0          0             640

桌子应该看起来像..

1        WW     88.0        88.0      1021021       340.0       
4        TT     55.0        55.0      1021021       340.0       
5        PP     66.0        66.0      1021021       340.0

                                                    1020

2        gg     66.0        66.0      1021022       320.0       
3        LL     658.0       652.0     1021022       320.0

                                                     640

任何可以提出解决此问题的更好方法的人,都将非常完整,并在此先感谢。

4

3 回答 3

1

我建议这应该在 中完成TableModel,特别是使用该getValueAt(int row, int column)方法。就像是:

public Object getValueAt(int rowIndex, int columnIndex){
  Object cellValue = // get your values out of your Beans...
  if (cellValue==0 && columnIndex!=LAST_COLUMN_INDEX){
    return null;
  }
  return cellValue;
}
于 2012-05-01T18:27:35.010 回答
1

我假设此问题陈述的第一列是空白的

您可以覆盖该TableModel getValueAt(int row, int column)方法。

@Override
public Object getValueAt(int row, int column){
  Object value = super.getValueAt(row, column);//Or get it from the Vector defined
  if(column == 2) {//Demo for the third column do same for other columns
    //Check the value in the first column if it is coming null
    if (null == getValueAt(row, 0) || getValueAt(row, 0) == ""){
      return null; // null means blank cell
    }
  }
  return value;
}
于 2012-05-01T18:42:02.450 回答
0

我正在使用 Jtable beans 绑定并使用 beansbinding-1.2.1.jar api 进行自动绑定。我下载了 beansbinding-1.2.1.jar 源并在类中进行了相关更改

/org.jdesktop.swingbinding.JTableBinding.java

containing the class BindingTableModel.java which implements the TableModel and I overridden the method as per the suggestions of above two friends and thanks to all...

@覆盖

public Object getValueAt(int row, int column) {
            Object value = valueAt(row, column);

            if (value != null
                    && (value.toString().equals("0") || value.toString()
                            .equals("0.0")|| value.toString().equals("default"))) {
                return null;
            }

            return value;
        }
于 2012-05-02T11:29:46.410 回答