How to add horizontal/vertical scrollbars to JScrollPane

后端 未结 2 751
栀梦
栀梦 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);
    
    0 讨论(0)
  • 2021-01-22 10:07

    You have to set for JTable#setAutoResizeMode, more is described in JTable's tutorial Setting and Changing Column Widths

    0 讨论(0)
提交回复
热议问题