Não estou conseguindo fazer o nome das colunas aparecer
pnlTela02.setLayout(new GridBagLayout());
String[] colunas = new String []{"Matricula","Nome"};
String[][] dados = new String [][] {
{new Integer(1).toString(),"Rafael Ferreira"},
{new Integer(2).toString(),"Joao Fulano"},
{new Integer(3).toString(),"Ciclano de Tal"},
{new Integer(4).toString(),"Fulano e Ciclano"},
{new Integer(5).toString(),"Fulano e Ciclano"}
};
DefaultTableModel modelo = new DefaultTableModel(dados, colunas);
jtable = new JTable(modelo);