尝试从JList中删除项目时出现逻辑错误

时间:2013-12-27 16:06:34

标签: java mysql data-access-layer

我有一个JList,显示我添加到数据库的所有项目。当我想删除多个项目时,说两个项目,其中只有一项被删除。这是我的代码: 这个方法来自我的DAL课程:

public void removeStudent(Student student)throws SQLException{
  PreparedStatement studentStatement = getConnected().prepareStatement(
    "delete from student where spnr = ? and sname = ? and sadress = ? " +
     " and stel = ? ");

  studentStatement.setString(1, student.getIdNumber());
  studentStatement.setString(2, student.getName());
  studentStatement.setString(3, student.getAddress());
  studentStatement.setString(4, student.getTel());
  studentStatement.executeUpdate();
}

类控制器:

public void removeStudent(Student student) throws SQLException{
  dal.removeStudent(student);
}

和班级视图。单击按钮删除时在actionListener中使用。

private void removeStudent(){
  try{
    controller.getDal().getStudentData().getName();
    controller.getDal().getStudentData().getAddress();
    controller.getDal().getStudentData().getIdNumber();   
    controller.getDal().getStudentData().getTel();

    controller.removeStudent(controller.getDal().getStudentData());
  }catch(Exception e){
    e.printStackTrace();
  }
}

和ActionEvent

if(infLst.getSelectedIndex() > -1){
  int choice = JOptionPane.showConfirmDialog(null, 
                 "Delete?" + "The student will be permamently deleted",
                 null,
                 JOptionPane.YES_NO_OPTION);
  if(choice == JOptionPane.YES_OPTION){
    //Removes from the JList            
    ((DefaultListModel)infLst.getModel()).removeElementAt(index);
    //And database 
    removeStudent();
  }else{
    return;
  }
}else{
  JOptionPane.showMessageDialog(null, "Please make sure you have selected an item from the list");
}
}}});

请考虑我是数据库编程的新领域。提前致谢。

1 个答案:

答案 0 :(得分:1)

  

当我想删除多个项目时,说两个项目,只会删除其中一个项目。

您的代码只有if条件来检查所选索引,因此它只会删除一个项目。

如果要删除所有选定的值,则需要使用JList中的方法返回要删除的多个值。查看可用于此目的的其他getSelected...()方法的API。然后,您需要创建一个循环来删除所有值。

返回Objects而不是索引值的方法将更容易使用,因为您可以从模型中删除Object,而不必担心首先删除较高的索引值。