0

我有这段代码来检测点击 JTable

table.addMouseListener(new java.awt.event.MouseAdapter()
{
    @Override
    public void mouseClicked(java.awt.event.MouseEvent e)
    {

        int row= table.rowAtPoint(e.getPoint());
        int col= table.columnAtPoint(e.getPoint());
        System.out.println(table.getSelectedRow());

        if (e.getClickCount() == 2)
        {

            System.out.println ("Doppio Click");

        }

    }

});

这段代码很好用,问题是如果我单击一行并且在鼠标按钮向上之前我将鼠标向上移动,则未检测到单击,但在我的 JTable 中选择了该行。谁能知道如何解决这个问题?谢谢!

4

1 回答 1

1

改为使用MouseListener.mouseReleasedorMouseListener.mousePressed事件(以这种方式检测双击比较棘手,但可以做到)。

于 2012-08-03T08:35:52.650 回答