关于删除功能 数据库里没有的id 进行删除操作还提示删除成功 如何优化大神们
else if(OPERATION_DELETE.equals(in.toUpperCase())
||OPERATION_DELETE.substring(0, 1).equals(in.toUpperCase())){
System.out.println("输入需要删除女神的ID:");
Scanner s=new Scanner(System.in);
try {
action.del(Integer.valueOf(s.nextInt()));
System.out.println("删除成功");
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("请输入数字");
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.println("输入的ID不存在 重新输入");
}
}