Java Swing How to - Enable cell selection in a JTable








Question

We would like to know how to enable cell selection in a JTable.

Answer

/*  w  w w . j a  va  2 s  . c o m*/
import javax.swing.JTable;

public class Main {
  public static void main(String[] argv) throws Exception {

    JTable table = new JTable();

    table.setColumnSelectionAllowed(true);
    table.setRowSelectionAllowed(true);
  }
}