JTable won't scroll in JScrollPane
问题 I've been having trouble trying to get the table to scroll; it just won't. I've looked at other stack answers and tried them, but they aren't working; and I'm not sure if I have something conflicting with those solutions. tableModel = new TableModel(); //Custom Table Model table = new JTable(); table.setBorder(null); table.setFillsViewportHeight(true); table.setModel(tableModel); JScrollPane tblScrollPane = new JScrollPane(table); tblScrollPane.setBorder(new EtchedBorder(EtchedBorder.LOWERED,