//can set column widths using percentages
private void setPreferredTableColumnWidths(JTable table, double[] percentages)
{
Dimension tableDim = table.getSize();
double total = 0;
for(int i = 0; i < table.getColumnModel().getColumnCount(); i++)
total += percentages[i];
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
for(int i = 0; i < table.getColumnModel().getColumnCount(); i++)
{
TableColumn column = table.getColumnModel().getColumn(i);
column.setPreferredWidth((int) (tableDim.width * (percentages[i] / total)));
}
}
我希望能够根据表格总宽度的百分比来更改 JTable 的宽度。上面的代码看起来应该可以工作,但是当我使用“setPreferredTableColumnWidths(table, new double[] {.01,.4,.2,.2,.2}); 调用它时,我只能得到等宽的列。
可能是什么问题呢?