java 中 JTable里怎么得知哪一行被选中

我建了一个JTable,用getSelectedRowCount()方法想获得表中的哪一行被鼠标选中了,但是发现不管我点哪一行返回的都是1。 要想获得鼠标选的是哪一行应该怎么做?说说详细的方法吧。

代码如下:

 /**
   * 获取鼠标点击的行号
   * @param y 点击位置的纵坐标值
   * @return 行号
   */
  private int getClickedRow(int y) {
    // JTable的行总数
    int rowCount = table.getRowCount();
    // JTable行的累计纵坐标
    int rowY = 0;

    if (y < 0) {
      return -1;
    }
    for (int rowIndex = 0; rowIndex < rowCount; rowIndex++) {
      rowY = rowY + (int) table.getCellRect(rowIndex, 0, true).getHeight();
      if (y < rowY) {
        return rowIndex;
      }
    }

    return -1;
  }

温馨提示:内容为网友见解,仅供参考
第1个回答  2009-05-15
JTable 自带的方法:
getSelectedRow
public int getSelectedRow()返回首个选定行的索引,如果没有选定的行,则返回 -1。

返回:
首个选定行的索引
第2个回答  2009-05-15
getSelectedRow()
试试这个本回答被提问者采纳
第3个回答  2009-05-16
JTable 自带的方法:
getSelectedRow
就可以了
相似回答