Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With below example code:

String column_names[]= {"Serial Number","Medicine Name","Dose","Frequency"};
table_model=new DefaultTableModel(column_names,3);
table=new JTable(table_model);

We want to set header with names of columns as in column_names with the above code but it is not working. Header is not visible though table is getting created.

share|improve this question
1  
According to the guidelines, you should use camelCase in stead of '_': tableModel and columnNames. See java.sun.com/docs/codeconv/html/CodeConventions.doc8.html – Fortega Feb 19 '10 at 16:55

3 Answers

up vote 3 down vote accepted

To be able to see the header, you should put the table in a JScrollPane.

panel.add(new JScrollPane(table));

Or you could specifically add the tableHeader to your panel if you really don't want a scrollpane (but: normally you don't want this behaviour):

panel.add(table.getTableHeader(), BorderLayout.NORTH);
panel.add(table, BorderLayout.CENTER);
share|improve this answer

See here for more information about JTables and TableModels

JTable Headers only get shown when the Table is in a scroll pane, which is usually what you want to do anyway. If for some reason, you need to show a table without a scroll pane, you can do:

panel.setLayout(new BorderLayout());
panel.add(table, BorderLayout.CENTER);
panel.add(table.getTableHeader(), BorderLayout.NORTH);
share|improve this answer

Read the JTable API and follow the link to the Swing tutorial on "How to Use Tables" for a working example. The trick is to add the table to a JScrollPane.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.