Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Enable column selection in a JTable

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);   } }