En el actionperformed haga que un boton pueda eliminar un dato registrado de una base de datos
private static void eliminarActionPerformed(java.awt.event.ActionEvent evt) { String nombre = txtNombre.getText(); try { PreparedStatement pst = cn.prepareStatement("DELETE FROM clientes WHERE nombre='"+nombre+"'"); pst.executeUpdate(); mostrardatos(""); } catch (Exception e) { System.out.print(e.getMessage()); } }