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

最佳答案

PropertyChangeListener添加到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;
        }
    }

10-06 05:56