Lesen Sie die Bemerkung von Kleopatra (ihr zweites Mal schlug sie vor, sich javax.swing.JXTable anzuschauen , und jetzt tut es mir leid, dass ich das erste Mal nicht nachgesehen habe :)) Ich schlage vor, Sie folgen dem Link
Ich hatte diese Lösung für das gleiche Problem: (aber ich schlage vor, Sie folgen dem obigen Link) Skalieren Sie beim Ändern der Tabellengröße die Tabellenspaltenbreiten auf die aktuelle Gesamtbreite der Tabelle. Dazu verwende ich ein globales Int-Array für die (relativen) Spaltenbreiten:
private int[] columnWidths=null;
Ich benutze diese Funktion, um die Tabellenspaltenbreiten einzustellen:
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);
}
}
Beim Einstellen der Daten rufe ich an:
setColumnWidths(this.columnWidths);
und beim Ändern rufe ich den ComponentListener auf, der auf das übergeordnete Element der Tabelle festgelegt ist (in meinem Fall das JScrollPane, das der Container meiner Tabelle ist):
public void componentResized(ComponentEvent componentEvent) {
this.setColumnWidths(this.columnWidths);
}
Beachten Sie, dass die JTable-Tabelle auch global ist:
private JTable table;
Und hier stelle ich den Hörer ein:
scrollPane=new JScrollPane(table);
scrollPane.addComponentListener(this);