It should be enough to call
Code:
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
Certainly, this works with the SimpleTableDemo from Oracle (if it doesn't work with your code, perhaps you can post it so we can see why not)
Hope this helps
