We would like to know how to enable column selection in a JTable.
/*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); } }