Lendo a observação do Kleopatra (na segunda vez, ela sugeriu dar uma olhada em javax.swing.JXTable , e agora sinto muito não ter dado uma olhada na primeira vez :)) Sugiro que você siga o link
Eu tinha essa solução para o mesmo problema: (mas sugiro que você siga o link acima) Ao redimensionar a tabela, dimensione as larguras das colunas da tabela para a largura total da tabela atual. para fazer isso, uso uma matriz global de ints para as larguras de coluna (relativas)):
private int[] columnWidths=null;
Eu uso esta função para definir as larguras das colunas da tabela:
public void setColumnWidths(int[] widths){
int nrCols=table.getModel().getColumnCount();
if(nrCols==0||widths==null){
return;
}
this.columnWidths=widths.clone();
//current width of the table:
int totalWidth=table.getWidth();
int totalWidthRequested=0;
int nrRequestedWidths=columnWidths.length;
int defaultWidth=(int)Math.floor((double)totalWidth/(double)nrCols);
for(int col=0;col<nrCols;col++){
int width = 0;
if(columnWidths.length>col){
width=columnWidths[col];
}
totalWidthRequested+=width;
}
//Note: for the not defined columns: use the defaultWidth
if(nrRequestedWidths<nrCols){
log.fine("Setting column widths: nr of columns do not match column widths requested");
totalWidthRequested+=((nrCols-nrRequestedWidths)*defaultWidth);
}
//calculate the scale for the column width
double factor=(double)totalWidth/(double)totalWidthRequested;
for(int col=0;col<nrCols;col++){
int width = defaultWidth;
if(columnWidths.length>col){
//scale the requested width to the current table width
width=(int)Math.floor(factor*(double)columnWidths[col]);
}
table.getColumnModel().getColumn(col).setPreferredWidth(width);
table.getColumnModel().getColumn(col).setWidth(width);
}
}
Ao definir os dados, eu chamo:
setColumnWidths(this.columnWidths);
e ao mudar eu chamo o ComponentListener definido para o pai da tabela (no meu caso o JScrollPane que é o contêiner da minha tabela):
public void componentResized(ComponentEvent componentEvent) {
this.setColumnWidths(this.columnWidths);
}
observe que a tabela JTable também é global:
private JTable table;
E aqui eu defino o ouvinte:
scrollPane=new JScrollPane(table);
scrollPane.addComponentListener(this);