Obrigado pelo interesse em me ajudar desde já!
Mas acho que você não entendeu ainda, ali na minha imagem acima, você ve a jTable preenchida, e ela foi preenchida dando um Ctrl C, Ctrl V de uma planilha excel, ao lado você ve o botão de + (no caso de adicionar) o meu intuito pra quem for usar a ferramenta é que quando a tabela estiver preenchida a pessoa clique no botão adicionar e as informações da jTable vá para o banco de dados.
Obs: Eu vi que voce usou campo texto de suporte na sua imagem, e se fosse assim realmente seria mais fácil, porém o procedimento que preciso fazer é exatamente esse que expliquei logo acima.
Tentei reutilizar seu código dessa forma, mas não tive exito:
private void adicionar() {
String sql = "insert into tabge(lista,dat,pep,listec,item,material,txtbre,qtde,um,rncrm,necob,natnf,local,pepaux,projeto) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
try {
pst = conexao.prepareStatement(sql);
pst.setlista(jTable1.getValueAt(jTable1.getSelectedRow(), 0).toString()));
pst.setdat(jTable1.getValueAt(jTable1.getSelectedRow(), 1).toString());
pst.setpep(jTable1.getValueAt(jTable1.getSelectedRow(), 2).toString());
pst.setlistec(jTable1.getValueAt(jTable1.getSelectedRow(), 3).toString());
pst.setitem(jTable1.getValueAt(jTable1.getSelectedRow(), 4).toString());
pst.setmaterial(jTable1.getValueAt(jTable1.getSelectedRow(), 5).toString());
pst.settxtbre(jTable1.getValueAt(jTable1.getSelectedRow(), 6).toString());
pst.setqtde(jTable1.getValueAt(jTable1.getSelectedRow(), 7).toString());
pst.setum(jTable1.getValueAt(jTable1.getSelectedRow(), 8).toString());
pst.setrncrm(jTable1.getValueAt(jTable1.getSelectedRow(), 9).toString());
pst.setnecob(jTable1.getValueAt(jTable1.getSelectedRow(), 10).toString());
pst.setnatnf(jTable1.getValueAt(jTable1.getSelectedRow(), 11).toString());
pst.setlocal(jTable1.getValueAt(jTable1.getSelectedRow(), 12).toString());
pst.setpepaux(jTable1.getValueAt(jTable1.getSelectedRow(), 13).toString());
pst.setprojeto(jTable1.getValueAt(jTable1.getSelectedRow(), 14).toString());
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e);
}
}