Mega Code Archive

 
Categories / Java / Swing JFC
 

Enable cell 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(true);   } }