JTable侦听进入编辑模式

时间:2016-12-21 10:03:21

标签: java swing jtable

这是一个非常简单的问题,但我无法找到答案(请原谅我笨拙的搜索......)。 有一个带有可编辑单元格的Jtable,我想检测何时输入一个单元格进行编辑(例如双击)。我该怎么做?

1 个答案:

答案 0 :(得分:3)

JTable添加到// // Implement the PropertyChangeListener interface // @Override public void propertyChange(PropertyChangeEvent e) { // A cell has started/stopped editing if ("tableCellEditor".equals(e.getPropertyName())) { if (table.isEditing()) // code for editing started; else // code for editing stopped; } }

else