How to add horizontal/vertical scrollbars to JScrollPane

后端 未结 2 758
栀梦
栀梦 2021-01-22 09:17

I want to add horizontal scrollbars to my JScrollPane, because my table right now looks like the one below:

\"enter

2条回答
  •  攒了一身酷
    2021-01-22 09:54

    try

    Dimension tableSize = new Dimension(500, 400);
    this.table.setPreferredSize(tableSize);
    

提交回复
热议问题