jscollpane 高度,我如何调整jscrollpane的大小

在Java Swing编程中,遇到问题:JScrollPane占用额外的空间,导致界面不紧凑。解决方法是重写JTable的getPreferredScrollableViewportSize()方法,使其返回表格的理想大小,从而让JScrollPane自动适应JTable尺寸。
摘要由CSDN通过智能技术生成

Ok so I have this code:

//adding the panel which will hold the order table

JPanel orderPanel = new JPanel();

right.add(orderPanel);

JTable order = new JTable(orderData, orderColumnNames);

JScrollPane orderPane = new JScrollPane(order);

orderPanel.add(orderPane);

And I want to be able to remove this space :

GwXiW.png

I guess the space is made by the JScrollPane but i can't find any method to resize the JScrollPane to the JTable's size

解决方案

For the reasons adduced here, don't of invoke setPreferredSize(). Instead, override getPreferredScrollableViewportSize() to return the desired size.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值