优化代码以通过其唯一的运行ID获取黑板用户或课程

时间:2016-05-25 12:39:03

标签: java web-services blackboard

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

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

感谢。

1 个答案:

答案 0 :(得分:0)

在第8行之后,您可以尝试使用此&gt;

更改行
    <button onclick="changeImage()">change</button>
    <button onclick="switchImage()">switch</button>
  
    <IMG SRC="http://images.my-addr.com/img/exam_gif_to_png_q1.png" name="L1" id="host_im">
      <div id="array"></div>