The code is all working, the problem is the date, I want to get the date of a jformatedtextfiel ## / ## / #### in the txt_data case and send it to the bank, I'm in the basics of java, I'm hooked on this code there are days and I researched a lot but it did not reach a result. Please if anyone can help, thank you.
con_cliente.conecta();
Date data;
SimpleDateFormat in = new SimpleDateFormat("yyyy-mm-dd");//do sistema para o banco
String dataformatada = in.format(txt_data.getText());
try{
data = in.parse(dataformatada);
String gry = "insert into cadastrodeprocesso (Datadecadastro, Cliente, Classificacao, Usuario) values ('"+
data.getDate()+"','"+
txt_nome.getText()+"','"+
cb_classificacao.getSelectedItem()+"','"+
txt_usuario.getText()+"')";
con_cliente.exeQuery(gry);
JOptionPane.showMessageDialog(null,"Gravado com sucesso!");
} catch(Exception add){
JOptionPane.showMessageDialog(null,"Falha ao gravar o registro " +add);
}
}//area para impossibilitar duplicar cadastros de empresas de mesmo nome
else{
JOptionPane.showMessageDialog(null, "Clique em novo para inserir um novo registro");
return;
}
}
}