My JTable header wont show even if add it into a container like JScrollPane...tell me why is it happen and how can i fix it or debug i
Same problem I have face You have to add the JTable to the JScrollPane then add JscrollPane to JFrame e.g.
JTable table = new JTable(); JScrollPane scrollPane= new JScrollPane(table); frame.add(scrollPane);