alguem poderia me dizer como eu converto uma variavel string em uma variavel timestamp
Primeiro converte a String em data:
String texto = "16/01/1987";
String formato = "dd/MM/yyyy";
Date data = new SimpleDateFormat(formato).parse(texto);
depois para Timestamp
Timestamp t = new Timestamp(data.getTime());