JTable单元监听器JAVA

时间:2017-09-12 07:04:50

标签: java swing jtable

需要一些帮助来帮助我理解jtable单元格听众。

我的问题是我需要捕捉细胞的变化,当它捕获时,我需要获得旧值和新值。

我问的原因是我正在使用JTable和DefaultTableModel。

我看到其他关于此的帖子,但是当我试图实现时,我没有得到任何“字符串”结果,只有序列化的结果。

以下是我正在使用的内容:

        table.addPropertyChangeListener(new PropertyChangeListener() {

        @Override
        public void propertyChange(PropertyChangeEvent evt) {

            System.out.println(evt.getOldValue());
            System.out.println(evt.getNewValue());
        }

    });

这就是我得到的:

null
javax.swing.JTable$GenericEditor@4b20aa93
javax.swing.JTable$GenericEditor@4b20aa93
null
null
javax.swing.JTable$GenericEditor@4b20aa93
com.apple.laf.AquaImageFactory$SystemColorProxy[r=255,g=255,b=255]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=0,g=0,b=0]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=9,g=80,b=208]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=202,g=202,b=202]
null
false
com.apple.laf.AquaImageFactory$SystemColorProxy[r=0,g=0,b=0]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=255,g=255,b=255]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=202,g=202,b=202]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=9,g=80,b=208]
false
true
com.apple.laf.AquaImageFactory$SystemColorProxy[r=255,g=255,b=255]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=0,g=0,b=0]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=9,g=80,b=208]
com.apple.laf.AquaImageFactory$SystemColorProxy[r=202,g=202,b=202]
true
false

1 个答案:

答案 0 :(得分:1)

两种方法。

首先是自定义TableModel并覆盖setValueAt(...)方法。基本代码是:

@Override
public void setValueAt(Object newValue, int row, int column)
{
    Object oldValue = getValueAt(row, column);

    // do processing with your "oldValue" and the "newValue"

    super.setValueAt(...);
}

另一种方法是使用"听众"您可以添加到任何TableModel。对于这种方法,您可以Table Cell Listener。每当oldValue / newValue被更改时,此类将生成一个事件。该事件将允许您访问这两个值,以便您进行处理。

根据您的具体要求,您可以使用任何一种方法。