我正在通过课程运行 ID 获取课程对象。下面是我的代码,它工作得很好。
public static CourseVO getBlackboardCourseObjectByCourseRunID(String RunID){
CourseVO[] courseVOList = null;
try {
courseVOList = BlackboardCoursesDAO.getAllBlackBoardCourse();
} catch (RemoteException e) {
// TODO Auto-generated catch block
throw new RuntimeException("Not able to fetch blackboard courses");
}
CourseVO courseVO = new CourseVO();
int length=courseVOList.length;
System.out.println("length : "+length);
int i=0;
courseVO = courseVOList[i];
while(!courseVO.getId().equals(RunID) && i<length){
courseVO = courseVOList[i];
//System.out.println("in while loop ");
i++;
}
return courseVO;
}
但是当我尝试在循环中获取这个对象时会遇到麻烦。如果有人可以提供一些更好的代码,那将是很大的帮助。
谢谢。