문제

I am populating the jTable from DB but puts gap for each cell up to beginning of the next column shown in picture below , how to fix that ? I will be happy you can comment on this thanks.

enter image description here

도움이 되었습니까?

해결책

In your code, you must have a reference to your JTable

You can use something like this.

yourTable.getColumnModel().getColumn(0).setPreferredWidth(10);
yourTable.getColumnModel().getColumn(1).setPreferredWidth(20);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top