I have the following table:
String x[][]={};
String columns[]= {"Programa","Estudiante","Modalidad"};
model = new DefaultTableModel(x,columns);
table.setModel(model);
And I would like to modify the titles of this table, which are the ones that are in columns during the execution of the program, they could help me.