学生管理系统-java课程设计.doc_第1页
学生管理系统-java课程设计.doc_第2页
学生管理系统-java课程设计.doc_第3页
学生管理系统-java课程设计.doc_第4页
学生管理系统-java课程设计.doc_第5页
已阅读5页,还剩40页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

java程序设计课程期末作业题 目 学生成绩管理系统 学 院 信息科学与工程学院专 业 计算机科学与技术 班 别 09级3班 学 号 200901051624 姓 名 2011年12月17日目录一、课程题目:3二、软件的功能描述3三、系统的uml类图4(一)用况图4(二)类之间的图4(三)数据流程图6四、功能调试6五、具体代码15一、课程题目:设计一个学生java成绩管理系统(可以不使用界面;如果使用,则界面使用awt或swing),要求:a) 增添、删除、修改学生基本信息(基本信息包含学生的学号、姓名、专业分数等信息);b) 计算每门课的平均成绩;c) 统计优秀、良好、中等、及格、不及格的人数百分比,并以柱状图、饼图呈现【说明:可以使用swing、awt自己绘制;也可以使用开源类库,如jfreechar】d) 按学号查询学生及成绩;e) 按照成绩分数排序二、软件的功能描述1, 能够实现学生信息的增删改查四项基本的操作。此程序允许出现重名的现象出现,另外在删除的时候提供了删除所有重名同学的信息和删除指定学号的学生的两种方法,更加贴近现实。2, 能够将程序中的数据存储到data.txt文件中,另外能在程序中通过swing中的table组件将文件中的内容进行打印出来。可以直观的看到文件内部的结果。3, 此程序给出了“按照学号排序”“按照平均成绩排序”“按照英语成绩排序”“按照数学成绩排序”“按照专业成绩排序”等五个排序方法。4, 此程序在查询的同时又能同时显示出三科成绩的饼图分布,饼图上标出了四个成绩段的人数和百分比。更加方便直观的体现出了单科的成绩分布。5, 程序有一个增加的功能。能够将所有同学的信息用三维柱状图的形式全部呈现出来,能够进行纵向、横向两种比较方式。方便人性化的进行成绩的比较。三、系统的uml类图(一)用况图(二)类之间的图student类 sort类(三)数据流程图四、功能调试1,主界面2,新建学生信息3,查询成绩页面4,修改成绩5,删除成绩第二种方法6, 打印文件内容7, 三科的排序8, 平均成绩排序:9,三科的饼图分布10,所有同学的成绩三维柱状图分析五、具体代码1,主界面代码(grade.java)public class grade / 定义主框架private jframe frame = new jframe(学生成绩管理系统);/ 定义菜单栏private jmenubar bar = new jmenubar();/ 定义菜单private jmenu jmedit = new jmenu(编辑);private jmenu jmcount = new jmenu(统计);private jmenu jmhelp = new jmenu(数据);/ 定义菜单项private jmenuitem jmicreate = new jmenuitem(新建);private jmenuitem jmimodify = new jmenuitem(修改);private jmenuitem jmisearch = new jmenuitem(寻找);private jmenuitem jmidelete = new jmenuitem(删除);private jmenuitem jmiall = new jmenuitem(成绩排序);private jmenuitem jmigraphics = new jmenuitem(图形统计);private jmenuitem jmihelp = new jmenuitem(文件信息);/ 定义文本标签private jlabel text = new jlabel();private jlabel text1 = new jlabel();private jlabel text2 = new jlabel();private jlabel text3 = new jlabel();private jlabel text4 = new jlabel();/ 定义面板private container con = frame.getcontentpane();/ 定义输入框对象/ private studentmanager inputinfo =null;/ 定义查询框架对象private search search = null;private create create = null;private delete delete = null;private modify modify = null;private datasort sort = null;private barcharts ss = null;/ 定义总分统计对象/ private allgradecount all = null;/ 定义个人统计对象/ private signalcount signal = null;/ 构造函数public grade() / 把菜单栏加入框架frame.setjmenubar(bar);/ 把菜单加入菜单栏bar.add(jmedit);bar.add(jmcount);bar.add(jmhelp);/ 把菜单项加入菜单jmedit.add(jmicreate);jmedit.addseparator();jmedit.add(jmisearch);jmedit.addseparator();jmedit.add(jmimodify);jmedit.addseparator();jmedit.add(jmidelete);/ 第一个下拉菜单jmcount.add(jmiall);jmcount.addseparator();jmcount.add(jmigraphics);/ 第二个下拉jmhelp.add(jmihelp);/ 第三个/ 设置文本界面text.settext(=基于txt文件的java学生管理系统=);text1.settext(1.增添、删除、修改学生基本信息;并计算每门课的平均成绩;);text2.settext(2.统计优秀、良好、中等、及格、不及格的百分比,并以图呈现);text3.settext(3.按学号查询学生及成绩,并按照不同的成绩分数排序。);text4.settext(=制作者,计算机09-3,王继重=);/ 设置欢迎界面con.setlayout(new flowlayout(flowlayout.left, 0, 10);con.add(text);con.add(text1);con.add(text2);con.add(text3);con.add(text4);/ 设置框架frame.setlocation(200, 200);frame.setsize(400, 300);frame.setvisible(true);frame.setdefaultcloseoperation(frame.exit_on_close);/ 增加监听器jmicreate.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) / todo 自动生成方法存根create = new create(););jmisearch.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) search = new search(););jmimodify.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) modify = new modify(););jmidelete.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) delete = new delete(););jmiall.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) sort = new datasort(););jmigraphics.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) ss= new barcharts(成绩分布柱状图););jmihelp.addactionlistener(new actionlistener() public void actionperformed(actionevent arg0) / todo 自动生成方法存根/ joptionpane.showmessagedialog(null, 计算机09-3 王继重);outfile a = new outfile(););public static void main(string args) grade a = new grade();2,新建用户的代码public class create extends jframe /* * 当前容器 */container currentcontainer = this;/* * 存储的文件名 */string filename = new string(data.txt);/* * 显示标题文本 */jlabel titlelabel = new jlabel(添加成绩界面);/* * 标题面板 */jpanel titlepanel = new jpanel();/* * 显示姓名文本 */jlabel namelabel = new jlabel(学生姓名);/* * 显示成绩文本 */jlabel scorelabel = new jlabel(学生学号);jlabel score1label = new jlabel(英语成绩);jlabel score2label = new jlabel(数学成绩);jlabel score3label = new jlabel(专业成绩);/* * 姓名文本框 */jtextfield nametextfield = new jtextfield(15);/* * 成绩文本框 */jtextfield scoretextfield = new jtextfield(15);jtextfield score1textfield = new jtextfield(15);jtextfield score2textfield = new jtextfield(15);jtextfield score3textfield = new jtextfield(15);/* * 输入面板 */jpanel inputpanel = new jpanel();/* * 添加按钮 */jbutton insertbtn = new jbutton(新建);/* * 管理面板 */jpanel managepanel = new jpanel();/* * 按钮监听器 */buttonactionlistener btnaction = new buttonactionlistener();/* * 构造器:初始化窗体 */public create() this.setsize(280, 300);this.setlocation(300, 300);this.setresizable(false);this.setdefaultcloseoperation(jframe.dispose_on_close);this.settitle(java学生成绩管理系统);/* * 将窗体划分为上中下三个块 */this.setlayout(new borderlayout();this.add(titlepanel, north);this.add(inputpanel, center);this.add(managepanel, south);/* * 第一块用来放标题面板 = = */titlepanel.setlayout(new flowlayout(flowlayout.center, 0, 10);titlepanel.add(titlelabel);titlelabel.setfont(new font(黑体, font.plain, 16);/* * 第二块放输入面板 */inputpanel.setlayout(new flowlayout(flowlayout.center, 20, 10);inputpanel.add(namelabel);/ 姓名inputpanel.add(nametextfield);inputpanel.add(scorelabel);/ 成绩inputpanel.add(scoretextfield);/ ?inputpanel.add(score1label);/ 成绩1inputpanel.add(score1textfield);/ ?inputpanel.add(score2label);/ 成绩2inputpanel.add(score2textfield);/ ?inputpanel.add(score3label);/ 成绩3inputpanel.add(score3textfield);/ ?/* * 第三块是管理面板 */managepanel.setlayout(new flowlayout(flowlayout.center, 5, 10);managepanel.add(insertbtn);/* * 为按钮注册按钮监听器 */insertbtn.addactionlistener(btnaction);/* * 显示窗体 */this.setvisible(true);/* * 按钮监听类 */class buttonactionlistener implements actionlistener public void actionperformed(actionevent e) /* * 检查是否输入了姓名 */string name = nametextfield.gettext().trim();if (name.length() = 0) joptionpane.showmessagedialog(currentcontainer, 输入的姓名为空!,操作失败, joptionpane.error_message);return;/* * 是否要求查询 */int score = 0;int score1 = 0;int score2 = 0;int score3 = 0;/* * 检查是否输入了成绩,输入不同的成绩 */try score = integer.parseint(scoretextfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score1 = integer.parseint(score1textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score2 = integer.parseint(score2textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score3 = integer.parseint(score3textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;/* * 是否要求录入 */if (e.getsource() = insertbtn) boolean flag = insert(name, score, score1, score2, score3); / 执行方法,进行录入操作if (flag) joptionpane.showmessagedialog(currentcontainer, 录入成功!);scoretextfield.settext(); / 清空成绩框score1textfield.settext();score2textfield.settext();score3textfield.settext(); else joptionpane.showmessagedialog(currentcontainer,录入过程中出现了异常,请联络技术人员!, 录入失败,joptionpane.error_message);return;/* * 插入新记录 * * param name * 姓名 * param score * 成绩 */public boolean insert(string name, int score, int score1, int score2,int score3) try /* * 写入文件 */writer out = new filewriter(filename, true);out.write(name + : + score + : + score1 + : + score2 + :+ score3 + rn);out.close();return true; catch (ioexception e) e.printstacktrace();return false;/* * 入口方法 * * param argspublic static void main(string args) new create();3,修改类public class modify extends jframe /* * 当前容器 */container currentcontainer = this;/* * 存储的文件名 */string filename = new string(data.txt);/* * 显示标题文本 */jlabel titlelabel = new jlabel(修改成绩界面);/* * 标题面板 */jpanel titlepanel = new jpanel();/* * 显示姓名文本 */jlabel namelabel = new jlabel(学生姓名);/* * 显示成绩文本 */jlabel scorelabel = new jlabel(学生学号);jlabel score1label = new jlabel(英语成绩);jlabel score2label = new jlabel(数学成绩);jlabel score3label = new jlabel(专业成绩);/* * 姓名文本框 */jtextfield nametextfield = new jtextfield(15);/* * 成绩文本框 */jtextfield scoretextfield = new jtextfield(15);jtextfield score1textfield = new jtextfield(15);jtextfield score2textfield = new jtextfield(15);jtextfield score3textfield = new jtextfield(15);/* * 输入面板 */jpanel inputpanel = new jpanel();/* * 修改按钮 */jbutton modifybtn = new jbutton(修改);/* * 管理面板 */jpanel managepanel = new jpanel();/* * 按钮监听器 */buttonactionlistener btnaction = new buttonactionlistener();/* * 构造器:初始化窗体 */public modify() this.setsize(280, 300);this.setlocation(300, 300);this.setresizable(false);this.setdefaultcloseoperation(jframe.dispose_on_close);this.settitle(java学生成绩管理系统);/* * 将窗体划分为上中下三个块 */this.setlayout(new borderlayout();this.add(titlepanel, north);this.add(inputpanel, center);this.add(managepanel, south);/* * 第一块用来放标题面板 = = */titlepanel.setlayout(new flowlayout(flowlayout.center, 0, 10);titlepanel.add(titlelabel);titlelabel.setfont(new font(黑体, font.plain, 16);/* * 第二块放输入面板 */inputpanel.setlayout(new flowlayout(flowlayout.center, 20, 10);inputpanel.add(namelabel);/ 姓名inputpanel.add(nametextfield);inputpanel.add(scorelabel);/ 成绩inputpanel.add(scoretextfield);/ inputpanel.add(score1label);/ 成绩1inputpanel.add(score1textfield);/ inputpanel.add(score2label);/ 成绩2inputpanel.add(score2textfield);/ inputpanel.add(score3label);/ 成绩3inputpanel.add(score3textfield);/* 第三块是管理面板 */managepanel.setlayout(new flowlayout(flowlayout.center, 5, 10);managepanel.add(modifybtn);/* * 为按钮注册按钮监听器 */modifybtn.addactionlistener(btnaction);/* * 显示窗体 */this.setvisible(true);/* * 按钮监听类 */class buttonactionlistener implements actionlistener public void actionperformed(actionevent e) /* * 检查是否输入了姓名 */string name = nametextfield.gettext().trim();if (name.length() = 0) joptionpane.showmessagedialog(currentcontainer, 输入的姓名为空!,操作失败, joptionpane.error_message);return;/* * 是否要求查询 */int score = 0;int score1 = 0;int score2 = 0;int score3 = 0;/* * 检查是否输入了成绩,输入不同的成绩 */try score = integer.parseint(scoretextfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score1 = integer.parseint(score1textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score2 = integer.parseint(score2textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;try score3 = integer.parseint(score3textfield.gettext().trim(); catch (exception e1) joptionpane.showmessagedialog(currentcontainer, 输入的成绩不是数字!,操作失败, joptionpane.error_message);return;/* * 是否要求录入 */* * 是否要求修改 */if (e.getsource() = modifybtn) int choose = joptionpane.showconfirmdialog(currentcontainer,确定要修改该学生的成绩吗?, 确认修改,joptionpane.yes_no_cancel_option);if (choose = joptionpane.yes_option) boolean flag = modify(name, score, score1, score2, score3); / 当确定时修改所有名字为name的同学的成绩为scoreif (flag) joptionpane.showmessagedialog(currentcontainer, 已将修改,修改成功!, joptionpane.plain_message); else joptionpane.showmessagedialog(currentcontainer,没有该姓名的同学的成绩记录!, 修改失败!,joptionpane.error_message);return;public boolean modify(string name, int score, int score1, int score2,int score3) try /* * 先读入所有学生成绩信息, 把满足条件的记录更新为新成绩后,暂存到内存中 其他记录直接存储 */bufferedreader in = new bufferedreader(new filereader(filename);string line = null, data = ;boolean flag = false;while (line = in.readline() != null) string info = line.split(:);if (info0.equals(name) line = info0 + : + score + : + score1 + : + score2+ : + score3;flag = true;data += line + rn;in.close();/* * 重新写文件 */writer out = new filewriter(filename);out.write(data);out.close();return flag; catch (ioexception e) e.printstacktrace();return false;入口方法public static void main(string args) new modify();4,删除类public class delete extends jframe container currentcontainer = this;string filename = new string(data.txt);jlabel titlelabel = new jlabel(刪除成绩界面);jpanel titlepanel = new jpanel();jlabel namelabel = new jlabel(学生姓名);jlabel scorelabel = new jlabel(学生学号);jlabel score1label = new jlabel(英语成绩);jlabel score2label = new jlabel(数学成绩);jlabel score3label = new jlabel(专业成绩);jtextfield nametextfield = new jtextfield(15);jtextfield scoretextfield = new jtextfield(15);jtextfield score1textfield = new jtextfield(15);jtextfield score2textfield = new jtextfield(15);jtextfield score3textfield = new jtextfield(15);jpanel inputpanel = new jpanel();jbutton deletebtn = new jbutton(删除);jpanel managepanel = new jpanel();buttonactionlistener btnaction = new buttonactionlistener();public delete() this.setsize(280, 300);this.setlocation(300, 300);this.setresizable(false);this.setdefaultcloseoperation(jframe.dispose_on_close);this.settitle(java学生成绩管理系统);this.setlayout(new borderlayout();this.add(titlepanel, north);this.add(inputpanel, center);this.add(managepanel, south);titlepanel.setlayout(new flowlayout(flowlayout.center, 0, 10);titlepanel.add(titlelabel);titlelabel.setfont(new font(黑体, font.plain, 16);inputpanel.setlayout(new flowlayout(flowlayout.center, 20, 10);inputpanel.add(namelabel);/ 姓名inputpanel.add(nametextfield);inputpanel.add(scorelabel);/ 成绩inputpanel.add(scoretextfield);/ ?inputpanel.add(score1label);/ 成绩1inputpanel.add(score1textfield);/ ?inputpanel.add(score2label);/ 成绩2inputpanel.add(score2textfield);/ ?inputpanel.add(score3label);/ 成绩3inputpanel.add(score3textfield);/ ?managepanel.setlayout(new flowlayout(flowlayout.center, 5, 10);managepanel.add(deletebtn);deletebtn.addactionlistener(btnaction);this.setvisible(true);class buttonactionlistener implements actionlistener public void actionperformed(actionevent e) string name = nametextfield.gettext().trim();if (name.length() = 0) joptionpane.showmessagedialog(currentcontainer, 输入的姓名为空!,操作失败, joptionpane.error_message);return;int score = 0;int score1 = 0;int score2 = 0;int score3 = 0;if (e.getsource() = deletebtn) try score = integer.parseint(scoretextfield.gettext().trim();int choose = joptionpane.showconfirmdialog(currentcontainer, 确定要删除该学号的同学吗?, 确认删除,joptionpane.yes_no_cancel_option);if (choose = joption

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论