0

我正在通过课程运行 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;
    }

但是当我尝试在循环中获取这个对象时会遇到麻烦。如果有人可以提供一些更好的代码,那将是很大的帮助。

谢谢。

4

1 回答 1

0

在第 8 行之后,您可以尝试使用此更改行>

Stream<CourseVO> courseList = Arrays.stream(courseVOList);

CourseVO foundCourse = courseList.filter(s -> s.getId().equals(RunID) )
  .findFirst().get();
于 2016-05-25T13:03:13.340 回答