クレオパトラの発言を読んで(彼女が2回目にjavax.swing.JXTableを参照することを提案しましたが、今は最初に参照していなかったのが残念です:))リンクをたどることをお勧めします
同じ問題に対してこの解決策がありました:(ただし、上のリンクをたどることをお勧めします)テーブルのサイズを変更するときは、テーブルの列の幅を現在のテーブルの合計の幅に合わせます。これを行うには、(相対)列幅に整数のグローバル配列を使用します):
private int[] columnWidths=null;
この関数を使用して、テーブルの列幅を設定します。
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);
}
}
私が呼び出すデータを設定するとき:
setColumnWidths(this.columnWidths);
変更時には、テーブルの親に設定されたComponentListenerを呼び出します(私の場合、テーブルのコンテナーであるJScrollPane):
public void componentResized(ComponentEvent componentEvent) {
this.setColumnWidths(this.columnWidths);
}
JTableテーブルもグローバルであることに注意してください。
private JTable table;
そしてここで私はリスナーを設定しました:
scrollPane=new JScrollPane(table);
scrollPane.addComponentListener(this);