En lisant la remarque de Kleopatra (sa deuxième fois, elle a suggéré de jeter un œil à javax.swing.JXTable , et maintenant je suis désolé de ne pas avoir jeté un coup d'œil la première fois :)) Je vous suggère de suivre le lien
J'ai eu cette solution pour le même problème: (mais je vous suggère de suivre le lien ci-dessus) Lors du redimensionnement du tableau, mettez à l'échelle les largeurs de colonne du tableau à la largeur totale du tableau actuel. pour ce faire, j'utilise un tableau global d'entiers pour les largeurs de colonne (relatives)):
private int[] columnWidths=null;
J'utilise cette fonction pour définir les largeurs de colonne du tableau:
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);
}
}
Lors de la configuration des données que j'appelle:
setColumnWidths(this.columnWidths);
et en changeant, j'appelle le jeu ComponentListener au parent de la table (dans mon cas le JScrollPane qui est le conteneur de ma table):
public void componentResized(ComponentEvent componentEvent) {
this.setColumnWidths(this.columnWidths);
}
notez que la table JTable est également globale:
private JTable table;
Et ici, je règle l'auditeur:
scrollPane=new JScrollPane(table);
scrollPane.addComponentListener(this);