《在线考试系统.ppt》由会员分享,可在线阅读,更多相关《在线考试系统.ppt(21页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、在线考试系统 Four short words sum up what has lifted most successful Four short words sum up what has lifted most successful individuals above the crowd: a little bit more. individuals above the crowd: a little bit more. -author -author -date-date 项目概述 在线考试系统是一个服务于老师和学生的学习系统。在系统中注册后,老师可以创建班级,并且在班级中出卷,学生申请
2、加入班级,得到老师的同意后,可以对该班级中的试卷进行检测,检测完毕后,学生和老师都可以看到该次考试的成绩。老师可以对自己所创建的班级、班级中的学生、班级中的试卷以及个人信息进行管理,学生可以参加考试、管理自己的个人信息。 相关工作进展说明 已经实现了在线考试、电子作业、模拟考试、班级统一考试、录入试卷、考卷评阅与成绩管理等功能。 项目的基本模块 1.班级管理模块 2.试题管理模块 3.学生管理模块 4.个人信息管理模块图1-1 用例图1图1-2 用例图2 实体关系图图1-3 实体关系图图1-4 list of references src中10个包 part1 po 对象 ClassInfo
3、PaperInfo ScoreInfo SelectionInfo StuansInfo StuInClassInfo StuInfo TeaInfo UserLogin dao 接口 dao.impl 接口实现类 service 业务层 service.impl 业务层接口实现类图1-5 包 src中10个包 part2 res.images 系统图片 res.dbconf JDBC文件 testsystem.enumpck 枚举 testsystem.util 工具类 testsystem.view 视图层 登录页面图1-6 MainJFrame 主界面图1-7 MainJFrame 教师
4、出试卷界面图1-8 CreatePaperJFrame 教师查看/修改试卷信息界面图1-9 PaperDetailJFrame 学生查看考试成绩图1-10 ScoreJFrame 个人信息界面图1-11 UserInfoJFrame显示试卷内容private void ShowSel(int no)SelectionInfo si=new SelectionInfo();/System.out.println(CreatePaperJFrame:313 +list_sel.size()+ +no);if(list_sel.size()no-1)si=list_sel.get(no-1);thi
5、s.textArea.setText(si.getSequest();this.textArea_1.setText(si.getSeA1();this.textArea_2.setText(si.getSeA2();this.textArea_3.setText(si.getSeA3();this.textArea_4.setText(si.getSeA4();boBox_1.setSelectedIndex(si.getSeans()-1);this.textField_1.setText(+si.getSeScore();elsethis.textArea.setText();this.
6、textArea_1.setText();this.textArea_2.setText();this.textArea_3.setText();this.textArea_4.setText();boBox_1.setSelectedIndex(0);this.textField_1.setText();if(no=1)this.btnNewButton.setEnabled(false);elsethis.btnNewButton.setEnabled(true);if(list_sel.size()=no)this.btnNewButton_1.setEnabled(false);els
7、ethis.btnNewButton_1.setEnabled(true);this.textField_2.setText(+no);sumscore=0;for(int i=0;ilist_sel.size();i+)sumscore+=list_sel.get(i).getSeScore();this.textField_3.setText(+sumscore);保存试卷if(checkform()=true)if(list_sel.size()currentNO)list_sel.add(currentNO-1, GenSel();elselist_sel.set(currentNO-
8、1, GenSel();ShowSel(currentNO);/添加试卷SimpleDateFormat sdf = new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);PaperInfo p = new PaperInfo();p.setCid(list.get(comboBox.getSelectedIndex()-1).getCid();p.setPname(textField.getText().trim();p.setPtime(sdf.format(new Date();sumscore=Float.parseFloat(textField_3.ge
9、tText().trim();p.setPscore(sumscore);p.setPvisible(VisibleType.VISIBLE);p.setPqcount(list_sel.size();final PaperInfoService pservice = new PaperInfoServiceImpl();final SelectionInfoService selservice = new SelectionInfoServiceImpl();/temppid临时存放试卷的id int temppid=pservice.insert(p); if(temppid!=0)if(selservice.insert_sel(list_sel, temppid)JOptionPane.showMessageDialog(null, 录入新试卷成功了!);CreatePaperJFrame.this.dispose(); 本系统从确立需求到基本功能得以实现,总共花费时间二十余天,期间因为基本功不够扎实,进度非常缓慢,遇到了许多困难,比如如何实现出试卷的功能,通过与别人的交流,上网搜寻资料,逐步解决。 通过自己实际动手操作,将二阶段学习的知识点应用到实践项目中,既夯实了我们的基础,又提高了我们的动手能力。