阅读Kleopatra的话(她第二次建议看一下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);