使用jtable生成表运行时和鼠标单击事件

时间:2012-10-10 10:44:15

标签: java swing event-handling jtable mouseevent

Hello Developers我在jframe中使用了两个按钮和一个表 当我点击一个按钮时,应该生成具有不同行数的新表,并且在单击表行时,它应该显示行和列的数量 再次当我点击另一个按钮时,它应该创建新表没有行 再次点击它时,它应显示行号和列号

我正在使用以下代码。第一次创建表时,它会生成正确的结果,但是当再次创建表时,在单击任何行时,它会给出行no和列号-1。和数组索引超出范围异常我的代码plz帮助

错误
JTable table;
JScrollPane jsp;
Button b1 = new JButton("1");
Button b2 = new JButton("2");
add(b1);
add(b2);
b1.addActionListener (this);
b1.addActionListener (this);

public void actionPerformed(ActionEvent ae) {
    int i = 0;
    if (ae.getActionCommand().equals("1")) {
        i = 1;
    }
    if (ae.getActionCommand().equals("2")) {
        i = 2;
    }
    String title[] = {""};
    Object obj[][] = new Object[i][1];
    table = new JTable(obj, title);
    jsp = new JScrollPane(table);
    add(jsp);
    table.addMouseMotionListener(this);
}

public void mouseClicked(MouseEvent me) {
    // first time it returns the true result but on new table creation 
    //i and j are returned -1 .
    int i = table.getSelectedRow();
    int j = table.getSelectedColumn();
    System.out.println("i is" + i);
    System.out.println("j is" + j);
}

1 个答案:

答案 0 :(得分:1)

此示例还有其他一些问题,但要解决您的问题,您需要获取MouseEvent的来源并对其执行操作:

public void mouseClicked(MouseEvent me) {
    // first time it returns the true result but on new table creation 
    //i and j are returned -1 .
    JTable table = (JTable)me.getSource();
    int i = table.getSelectedRow();
    int j = table.getSelectedColumn();
    System.out.println("i is" + i);
    System.out.println("j is" + j);
}

问题出在ActionListener您将table重新分配给新表(未选择任何行)。因此,如果您单击第一个表,它仍然会在第二个表上执行它的操作(没有选择任何行)。