re-size JTable when useing Default table model

二次信任 提交于 2019-11-29 17:40:41

To size up the table#setPreferredSize().

table.setPreferredSize(new Dimension(500, 500));

To size up the columns table#getColumn().

table.getColumn(columnNames[0]).setPreferredWidth(100);
table.getColumn(columnNames[1]).setPreferredWidth(400);

I hope this will help to resolve your issue. If you got any issue while implementing this then just ask.

trashgod

Using setPreferredSize() is problematic. Because JTable implements Scrollable, overriding getPreferredScrollableViewportSize() to return a multiple of getRowHeight() may be a better approach.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!