Como adicionar cabeçalhos JTable Java/Eclipse
Fala pessoal, já procurei em todos os fóruns e não acho como adicionar os cabeçalhos das colunas na JTable. Já tentei criar a scrollpane e adicionar a table e depois adicionar ao contentpane, mas não resolve. Já mudei outros códigos que sugeriram mas nada funciona.
Segue a classe:
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import java.awt.Font;
import javax.swing.JTable;
import java.awt.ScrollPane;
import javax.swing.table.DefaultTableModel;
import javax.swing.border.TitledBorder;
public class FormRelatorioCursos extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel contentPane;
private JTable table;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
FormRelatorioCursos frame = new FormRelatorioCursos();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public FormRelatorioCursos() {
setTitle("Relat\u00F3rio de Cursos");
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setBounds(100, 100, 872, 490);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
JLabel lblNewLabel = new JLabel("Relat\u00F3rio de Cursos");
lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 36));
lblNewLabel.setBounds(251, 11, 361, 58);
contentPane.add(lblNewLabel);
table = new JTable();
table.setToolTipText("");
table.setModel(new DefaultTableModel(
new Object[][] {
{null, null, null, null},
},
new String[] {
"ID", "Dura\u00E7\u00E3o", "Nome do Curso", "N\u00EDvel"
}
));
table.setBounds(10, 82, 836, 358);
contentPane.add(table);
}
}