资源描述:
《java学籍管理系统源代码》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、packagezuoye;//主类importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;importjava.io.*;importjava.util.Hashtable;publicclassManagerWindowextendsJFrameimplementsActionListener{InputStudent基本信息录入=null;ModifySituation基本信息修改=null;Inquest基本信息查询=null;Delete基本信息
2、删除=null;JPanelpCenter,p,p9;TextFieldtxtName,txtPassword;LabellblTitle,lblName,lblPassword;ButtonbtnSubmit,btnReset,guanbi;Panelp1,p11,p12,p2,p13,p14,p15;JMenuBarbar;ImageIconicon;JMenufileMenu;JMenuItem录入,修改,查询,删除,欢迎,退出,关于;Containercon=null;Hashtable基本信息=null;F
3、ilefile=null;CardLayoutcard=null;JLabellabel=null;JLabellabel2;publicManagerWindow(){p=newJPanel();lblName=newLabel("管理员帐号:");txtName=newTextField(10);lblPassword=newLabel("密码:");txtPassword=newTextField(10);txtPassword.setEchoChar('*');btnSubmit=newButton("提交"
4、);btnReset=newButton("重置");guanbi=newButton("关闭");p11=newPanel();p12=newPanel();p13=newPanel();p14=newPanel();p15=newPanel();p11.add(lblName);p11.add(txtName);p12.add(lblPassword);p12.add(txtPassword);txtName.addActionListener(this);txtPassword.addActionListene
5、r(this);p13.add(btnSubmit);btnSubmit.setBackground(Color.YELLOW);p13.add(btnReset);btnReset.setBackground(Color.YELLOW);p13.add(guanbi);guanbi.setBackground(Color.YELLOW);btnSubmit.addActionListener(this);btnReset.addActionListener(this);guanbi.addActionListene
6、r(this);p.setLayout(newGridLayout(10,1));p.add(p14);p.add(p15);p.add(p11);p.add(p12);p.add(p13);p.setBackground(Color.gray);p9=newJPanel();icon=newImageIcon("123.jpg");label2=newJLabel(icon,JLabel.LEFT);label=newJLabel("欢迎使用学生基本信息管理系统",JLabel.CENTER);label.setF
7、ont(newFont("TimesRoman",Font.BOLD,24));label.setForeground(Color.red);p9.setOpaque(true);p9.add(label);p9.add(label2);录入=newJMenuItem("录入学生基本信息");修改=newJMenuItem("修改学生基本信息");查询=newJMenuItem("查询学生基本信息");删除=newJMenuItem("删除学生基本信息");欢迎=newJMenuItem("欢迎界面");退出=new
8、JMenuItem("退出");关于=newJMenuItem("关于我们");bar=newJMenuBar();fileMenu=newJMenu("菜单选项");fileMenu.add(录入);fileMenu.add(修改);fileMenu.add(查询);fileMenu.add(删除);fileMenu.add(欢迎);file