I want to add horizontal scrollbars to my JScrollPane, because my table right now looks like the one below:
try
Dimension tableSize = new Dimension(500, 400); this.table.setPreferredSize(tableSize);
You have to set for JTable#setAutoResizeMode, more is described in JTable's tutorial Setting and Changing Column Widths
JTable's