概要

JTableのセルをダブルクリックして内容を表示します。

サンプルコード

table.setAutoCreateRowSorter(true);
table.addMouseListener(new MouseAdapter() {
  @Override public void mouseClicked(MouseEvent e) {
    if (e.getClickCount() >= 2) {
      Point pt = e.getPoint();
      int idx = table.rowAtPoint(pt);
      if (idx >= 0) {
        int row = table.convertRowIndexToModel(idx);
        String str = String.format(
          "%s (%s)", model.getValueAt(row, 1), model.getValueAt(row, 2));
        JOptionPane.showMessageDialog(
          table, str, "title", JOptionPane.INFORMATION_MESSAGE);
      }
    }
  }
});
View in GitHub: Java, Kotlin

解説

  • JTableMouseListenerを設定してMouseEvent#getClickCount()メソッドでマウスクリック数を取得し、これが2以上になる場合はセルがダブルクリックされたと判断
  • JTableのセルはダブルクリックで編集開始がデフォルトなのですべてのセルを編集不可に設定

参考リンク

コメント