Java Swing How to - Enable column selection in a JTable








Question

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

Answer

/*from  w  w w.ja  v a 2s .  c om*/
import javax.swing.JTable;

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

    JTable table = new JTable();

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