资源描述
1李 阳 java4615 2 项目概述 在线考试系统是一个服务于老师和学生的学习系统。在系统中注册后,老师可以创建班级,并且在班级中出卷,学生申请加入班级,得到老师的同意后,可以对该班级中的试卷进行检测,检测完毕后,学生和老师都可以看到该次考试的成绩。老师可以对自己所创建的班级、班级中的学生、班级中的试卷以及个人信息进行管理,学生可以参加考试、管理自己的个人信息。相关工作进展说明 已经实现了在线考试、电子作业、模拟考试、班级统一考试、录入试卷、考卷评阅与成绩管理等功能。 3 项目的基本模块 1.班级管理模块 2.试题管理模块 3.学生管理模块 4.个人信息管理模块 4图1-1 用例图1 5图1-2 用例图2 6 实体关系图 图1-3 实体关系图 7图1-4 list of references 8 src中10个包 part1po 对象 ClassInfo PaperInfo ScoreInfo SelectionInfo StuansInfo StuInClassInfo StuInfo TeaInfo UserLogindao 接口dao.impl 接口实现类service 业务层service.impl 业务层接口实现类 图1-5 包 9 src中10个包 part2res.images 系统图片res.dbconf JDBC文件testsystem.enumpck 枚举testsystem.util 工具类testsystem.view 视图层 10 登录页面 图1-6 MainJFrame 11 主界面 图1-7 MainJFrame 12 教师出试卷界面 图1-8 CreatePaperJFrame 13 教师查看/修改试卷信息界面 图1-9 PaperDetailJFrame 14 学生查看考试成绩 图1-10 ScoreJFrame 15 个人信息界面 图1-11 UserInfoJFrame 16 显示试卷内容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);this.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(); else this.textArea.setText();this.textArea_1.setText();this.textArea_2.setText(); 17 this.textArea_3.setText();this.textArea_4.setText();boBox_1.setSelectedIndex(0);this.textField_1.setText();if(no=1) this.btnNewButton.setEnabled(false);else this.btnNewButton.setEnabled(true);if(list_sel.size()=no)this.btnNewButton_1.setEnabled(false);else this.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); 18 保存试卷if(checkform()=true) if(list_sel.size()currentNO)list_sel.add(currentNO-1, GenSel();else list_sel.set(currentNO-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.getText().trim();p.setPscore(sumscore);p.setPvisible(VisibleType.VISIBLE);p.setPqcount(list_sel.size(); 19 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(); 20 本系统从确立需求到基本功能得以实现,总共花费时间二十余天,期间因为基本功不够扎实,进度非常缓慢,遇到了许多困难,比如如何实现出试卷的功能,通过与别人的交流,上网搜寻资料,逐步解决。通过自己实际动手操作,将二阶段学习的知识点应用到实践项目中,既夯实了我们的基础,又提高了我们的动手能力。 21
展开阅读全文