我有一个显示AbstractTabelModel的JTable。我试图在我的项目中创建一个void方法,它将每列的宽度设置为列中最长值的长度。这是我现在使用的方法,其中" accountWindow"是JTable:
public void setColumnWidths(){
accountWindow.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
for (int i = 0; i < accountWindow.getColumnCount(); i++){
int greatestStringLength = 2;
for (int z = 0; z < accountWindow.getRowCount(); z++){
if (accountWindow.getValueAt(z, i).toString().length() > greatestStringLength){
System.out.println("Width SET");
greatestStringLength = accountWindow.getValueAt(z, i).toString().length();
accountWindow.getColumnModel().getColumn(i).setPreferredWidth(greatestStringLength);
}
//System.out.println(accountWindow.getValueAt(z, i).toString());
//System.out.println("Greatest Value: " + greatestValueWidth);
}
}
}
在我的Controller类(MVC)中正确调用该方法,但是它将每列的宽度设置为基本为0.在表更新后的方法被称为和fireTableData()方法被呼叫并显示帐户信息。我已将JTable添加到滚动窗格。任何意见或建议将不胜感激。
答案 0 :(得分:1)
宽度需要以像素为单位指定,而不是字符串中的字符。
if (accountWindow.getValueAt(z, i).toString().length() > greatestStringLength){
在我看来,你只是获取字符串中的字符数,而不是渲染字符串所需的宽度。这是20个字符不会渲染20像素。字符串的宽度因不同的字体而异。
查看Table Column Adjuster以获取有关如何确定渲染宽度的解决方案。它提供了一个简单的用法和一个可以使用的具有更多功能的自定义类。
两个解决方案实际上都会调用表使用的渲染器来确定最大宽度。