1.求毕业设计及论文“基于Java的学生信息管理系统的设计与实现”
仅仅给你个参考 //Java Group Project_StudentManagement源码 //NetBeans IDE 6.5 环境 package studentmanager; import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.io.*; import java.util.*; class Student implements java.io.Serializable{ String number,name,specialty,grade,borth,sex; public Student(){}; public void setNumber(String number){ this.number=number;} public String getNumber(){ return number;} public void setName(String name){ this.name=name;} public String getName(){ return name;} public void setSex(String sex){ this.sex=sex;} public String getSex(){ return sex;} public void setSpecialty(String specialty){ this.specialty=specialty;} public String getSpecialty(){ return specialty;} public void setGrade(String grade){ this.grade=grade;} public String getGrade(){ return grade;} public void setBorth(String borth){ this.borth=borth;} public String getBorth(){ return borth;} } public class StudentManager extends JFrame{ JLabel lb=new JLabel("录入请先输入记录,查询、删除请先输入学号,修改是对查询" + "内容改后的保存!"); JTextField 学号,姓名,专业,年级,出生; JRadioButton 男,女; ButtonGroup group=null; JButton 录入,查询,删除,修改,显示; JPanel p1,p2,p3,p4,p5,p6,pv,ph; Student 学生=null; Hashtable 学生散列表=null; File file=null; FileInputStream inOne=null; ObjectInputStream inTwo=null; FileOutputStream outOne=null; ObjectOutputStream outTwo=null; public StudentManager(){ super("学生基本信息管理系统"); 学号=new JTextField(10); 姓名=new JTextField(10); 专业=new JTextField(10); 年级=new JTextField(10); 出生=new JTextField(10); group=new ButtonGroup(); 男=new JRadioButton("男",true); 女=new JRadioButton("女",false); group.add(男); group.add(女); 录入=new JButton("录入"); 查询=new JButton("查询"); 删除=new JButton("删除"); 修改=new JButton("修改"); 显示=new JButton("显示"); 录入.addActionListener(new InputAct()); 查询.addActionListener(new InquestAct()); 修改.addActionListener(new ModifyAct()); 删除.addActionListener(new DeleteAct()); 显示.addActionListener(new ShowAct()); 修改.setEnabled(false); p1=new JPanel(); p1.add(new JLabel("学号:",JLabel.CENTER)); p1.add(学号); p2=new JPanel(); p2.add(new JLabel("姓名:",JLabel.CENTER)); p2.add(姓名); p3=new JPanel(); p3.add(new JLabel("性别:",JLabel.CENTER)); p3.add(男); p3.add(女); p4=new JPanel(); p4.add(new JLabel("专业:",JLabel.CENTER)); p4.add(专业); p5=new JPanel(); p5.add(new JLabel("年级:",JLabel.CENTER)); p5.add(年级); p6=new JPanel(); p6.add(new JLabel("出生:",JLabel.CENTER)); p6.add(出生); pv=new JPanel(); pv.setLayout(new GridLayout(6,1)); pv.add(p1); pv.add(p2); pv.add(p3); pv.add(p4); pv.add(p5); pv.add(p6); ph=new JPanel(); ph.add(录入); ph.add(查询); ph.add(修改); ph.add(删除); ph.add(显示); file=new File("学生信息.txt"); 学生散列表=new Hashtable(); if(!file.exists()){ try{ FileOutputStream out=new FileOutputStream(file); ObjectOutputStream objectOut=new ObjectOutputStream(out); objectOut.writeObject(学生散列表); objectOut.close(); out.close(); } catch(IOException e){} } Container con=getContentPane(); con.setLayout(new BorderLayout()); con.add(lb, BorderLayout.NORTH); con.add(pv, BorderLayout.CENTER); con.add(ph, BorderLayout.SOUTH); (EXIT_ON_CLOSE); setBounds(100,100,600,300); setVisible(true); } public static void main(String[] args) {new StudentManager();} class InputAct implements ActionListener{ public void actionPerformed(ActionEvent e){ 修改.setEnabled(false); String number=""; number=学号.getText(); if(number.length()>0){ try{ inOne=new FileInputStream(file); inTwo=new ObjectInputStream(inOne); 学生散列表=(Hashtable)inTwo.readObject(); inOne.close(); inTwo.close(); } catch(Exception ee){System.out.println("创建散列表出现问题!");} if(学生散列表.containsKey(number)){ String warning="该生信息已存在,请到修改页面修改!"; JOptionPane.showMessageDialog(null,warning,"警告", JOptionPane.WARNING_MESSAGE); }//end if1 else{ String m="该生信息将被录入!"; int ok=JOptionPane.showConfirmDialog(null,m,"确认", JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE); if(ok==JOptionPane.YES_OPTION){ String name=姓名.getText(); String specialty=专业.getText(); String grade=年级.getText(); String borth=出生.getText(); 。
2.关于一个JAVA开发的学员管理系统的毕业论文
本套学籍管理系统毕业论文,由JAVA开发,Access数据库,其中论文26页,1.2万字 随着科学技术的不断提高,计算机科学日渐成熟,其强大的功能已为人们深刻认识,它已进入人类社会的各个领域并发挥着越来越重要的作用。
学生档案管理系统是一个教育单位不可缺少的部分,它的内容对于学校的决策者和管理者来说都至关重要,学生档案管理系统能够为用户提供充足的信息和快捷的查询手段。 本系统是根据现代化校园的发展而设计的基于J2SE的学生档案管理系统,本系统可以方便学校对学生的信息管理、以及家长来学校查找学生。
实现全校学生信息在线查询。对新来的学员信息进行信息录入。
由于学员年龄,政治面貌等情况在变动,可以实现信息修改,及时调整学员的基本情况,本系统实现了,添加信息,修改信息,信息查询,删除信息功能。提高了学校管理学员信息的准确性好高效性。
关键字 J2SE 在线查询 添加信息,修改信息,信息查询,删除信息功能 Student records management system As science and technology continue to improve, computer science increasingly mature, and its powerful functions for the people to deeply understand that it has entered human society in various fields and is playing an increasingly important role. Student records management system is an essential part of an education unit, its contents for schools, policy makers and managers is vital that students file management system to provide users with adequate information and efficient means enquiries. The system is based on the development of modern campus designed for J2SE students records management system, the system allow the school to students of information management, as well as parents to the school to identify students. Achieving school students information online enquiries. Information on the new information to the trainees entered. As students age, changes in the political landscape, and the information can be modified to achieve the timely adjustment of the basic trainees, the system achieved, add information, modify information, information enquiries, delete information functions. Improve the accuracy of school information management trainees good efficient. Key words : Online enquiries added information, modify information, information enquiries, delete information functions 由【 。
7.用java做了个学籍管理系统,答辩时老师一般会问些什么
看你什么样子的老师,我2月前刚答辩完.我么自己写的程序 老师弄不明白非说不是我自己做的,让我参加2辩.当时问我的问题主要有1.这个标签叫啥?我说这是jsp标签,里面写jsp代码.老师说你连这个名字都不知道程序能是你自己做的吗? 第二个问题.你这是单机的还是网络的,我说我这是基于BS的,网络单机都行.老师笑着摇头.第三个问题 解释下什么是MVC模式.我说我的jsp页面是我的视图负责显示数据,三个servlet是控制负责跳转,三个实现接口的类是模型层实现对数据库的操作,我答完只见老师仰天大笑说我答非所问.然后我就2辩了.2辩的时候老师问我数据库操作你都用了那些 函数 或者方法,我说executeUpdate,querry,connection,resultset。
然后2辩的老师说可以了,给我79分.老师问的问题千奇百怪,有的老师也是四六不懂还要装明白~你要知道老师不是都懂代码的,有的老师会问你 设计上的问题,比如你的编译环境,你设计数据库的时候是怎么想的.有的会依照论文 问你功能上都实现了那些,如何实现的。最后祝好运,别跟我一样遇到让人蛋疼的老师.。
8.计算机jsp java毕业设计有哪些题目可以参考
JSP001网上拍卖平台系统
JSP002学生考试成绩分析java
JSP003网站流量统计
JSP004计算机等级考试查询系统JSP+JDBC.
JSP005网络远程作业处理系统
JSP006网上书店售书系统
JSP007房屋租赁管理信息系统JDBC
JSP008基于JSP的学生信息管理系统
JSP009教师档案管理系统
JSP010办公自动化管理系统
JSP011机房上机收费管理系统
JSP012网上选课系统
JSP013企业人事管理系统
JSP014CD销售管理系统
JSP015小区物业管理
JSP016自动排课系统
JSP017学生学籍管理系统
JSP018网上论坛
java论坛管理系统,包括论文和程序
java图书管理系统毕业设计+源码
Java游戏设计打飞机程序+论文
java作业管理系统
java五子棋的开发
JAVA论坛管理数据库开发
更多jsp java毕业设计题目:
转载请注明出处众文网 » java学生学籍管理系统毕业论文