用java做的學籍管理系統(tǒng).pptx_第1頁
用java做的學籍管理系統(tǒng).pptx_第2頁
用java做的學籍管理系統(tǒng).pptx_第3頁
用java做的學籍管理系統(tǒng).pptx_第4頁
用java做的學籍管理系統(tǒng).pptx_第5頁
已閱讀5頁,還剩19頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、五塊二Java小組1 成員 項目 功能 框架The End2組長: 常永恒:修改功能組員: 李 強:刪除功能 孫東升:登陸界面、主窗口 涂留定:ppt 、錄入功能 吳春亮:查詢功能 JAVA分工3設計該系統(tǒng)時,需要編寫6個Java源文件:Delete.java,InputStudent.java,Inquest.java,ManagerWindow.java,ModifySituation.java,Student.java可以進行錄入,修改,查詢,刪除學生的信息,包括學號,姓名,性別,專業(yè),班級,生日等項目概況開始界面4 產品功能介紹InputStudent.java錄入學生信息,實現(xiàn)錄入學

2、生的學號,姓名,專業(yè),年級,生日和性別,同時還有重置選項,可以重置當前輸入的學生信息,不影響錄入的學生信息,當然也可以在錄入前直接修改ModifySituation.java修改學生信息錄入學生信息后,可以按學號搜到該學生的信息,然后修改除學號以外的所有信息,如果要修改學號,可以先刪除該學生的信息,然后重新錄入Inquest.java按學號查詢學生錄入的所有信息Delete.java按學號刪除學生信息,刪除是能顯示該學生的信息,并有提示 5總體設計圖形展示總體框架6主類程序展示package zuoye;/主類import java.awt.*;import java.awt.event.*;

3、import javax.swing.*;import java.io.*;import java.util.Hashtable;public class ManagerWindow extends JFrame implements ActionListener InputStudent 基本信息錄入=null; ModifySituation 基本信息修改=null; Inquest 基本信息查詢=null; Delete 基本信息刪除=null; JPanel pCenter,p,p9; TextField txtName,txtPassword; Label lblTitle,lblN

4、ame,lblPassword; Button btnSubmit,btnReset,guanbi; Panel p1,p11,p12,p2,p13,p14,p15;7 JMenuBar bar; ImageIcon icon; JMenu fileMenu; JMenuItem 錄入,修改,查詢,刪除,歡迎,退出,關于; Container con=null; Hashtable 基本信息=null; File file=null; CardLayout card=null; JLabel label=null; JLabel label2; public ManagerWindow() p

5、=new JPanel(); lblName=new Label(管理員帳號:); txtName=new TextField(10); lblPassword=new Label(密 碼:); txtPassword=new TextField(10); txtPassword.setEchoChar(*); btnSubmit = new Button(提交); btnReset = new Button(重置); guanbi=new Button(關閉); p11=new Panel(); p12=new Panel();8 p13=new Panel(); p14=new Panel

6、(); p15=new Panel(); p11.add(lblName); p11.add(txtName); p12.add(lblPassword); p12.add(txtPassword); txtName.addActionListener(this); txtPassword.addActionListener(this); p13.add(btnSubmit); btnSubmit.setBackground(Color.YELLOW); p13.add(btnReset); btnReset.setBackground(Color.YELLOW); p13.add(guanb

7、i); guanbi.setBackground(Color.YELLOW); btnSubmit.addActionListener(this); btnReset.addActionListener(this); guanbi.addActionListener(this); p.setLayout(new GridLayout(10,1); p.add(p14);9 p.add(p15); p.add(p11); p.add(p12); p.add(p13); p.setBackground(Color.gray); p9=new JPanel(); icon=new ImageIcon

8、(123.jpg); label2=new JLabel(icon,JLabel.LEFT); label=new JLabel(歡迎使用學生基本信息管理系統(tǒng),JLabel.CENTER); label.setFont(new Font(TimesRoman,Font.BOLD,24); label.setForeground(Color.red); p9.setOpaque(true); p9.add(label); p9.add(label2); 錄入=new JMenuItem(錄入學生基本信息); 修改=new JMenuItem(修改學生基本信息); 查詢=new JMenuItem

9、(查詢學生基本信息); 刪除=new JMenuItem(刪除學生基本信息); 歡迎=new JMenuItem(歡迎界面); 退出=new JMenuItem(退出); 關于=new JMenuItem(關于我們); bar=new JMenuBar();10 fileMenu=new JMenu(菜單選項); fileMenu.add(錄入); fileMenu.add(修改); fileMenu.add(查詢); fileMenu.add(刪除); fileMenu.add(歡迎); fileMenu.add(關于); fileMenu.add(退出); fileMenu.enable(

10、false); bar.add(fileMenu); setJMenuBar(bar); 基本信息=new Hashtable(); 錄入.addActionListener(this); 修改.addActionListener(this); 查詢.addActionListener(this); 刪除.addActionListener(this); 歡迎.addActionListener(this); 退出.addActionListener(this); 關于.addActionListener(this); card=new CardLayout(); con=getContent

11、Pane(); pCenter=new JPanel();11 pCenter.setLayout(card); pCenter.setBackground(Color.black); file=new File(作業(yè).txt); if(!file.exists() try FileOutputStream out=new FileOutputStream(file); ObjectOutputStream objectOut=new ObjectOutputStream(out); objectOut.writeObject(基本信息); objectOut.close(); out.clo

12、se(); catch(IOException e) 基本信息錄入=new InputStudent(file); 基本信息修改=new ModifySituation(file); 基本信息查詢=new Inquest(this,file); 基本信息刪除=new Delete(file); pCenter.add(p,BorderLayout.CENTER); pCenter.add(歡迎語界面,p9); pCenter.add(錄入界面,基本信息錄入); pCenter.add(修改界面,基本信息修改); pCenter.add(刪除界面,基本信息刪除); 12 con.add(pCen

13、ter,BorderLayout.CENTER); con.validate(); addWindowListener(new WindowAdapter() public void windowClosing(WindowEvent e) System.exit(0); ); setVisible(true); setBounds(500,200,450,400); validate(); public void clear()txtName.setText();txtPassword.setText();SuppressWarnings(deprecation)public void su

14、bmit()String n=txtName.getText();String paw=txtPassword.getText();if(n.equals(admin) & paw.equals(1234)JOptionPane.showMessageDialog(this,合法用戶,歡迎進入本系統(tǒng));card.show(pCenter,歡迎語界面);fileMenu.enable();13elseJOptionPane.showMessageDialog(this,非法用戶,禁止進入本系統(tǒng)); public void actionPerformed(ActionEvent e) if(e.g

15、etSource()=錄入) card.show(pCenter,錄入界面); else if(e.getSource()=修改) card.show(pCenter,修改界面); else if(e.getSource()=查詢) 基本信息查詢.setVisible(true); else if(e.getSource()=刪除) card.show(pCenter,刪除界面); else if(e.getSource()=歡迎)14 card.show(pCenter,歡迎語界面); else if(e.getSource()=退出) System.exit(0); else if(e.g

16、etSource()=關于) JOptionPane.showMessageDialog(this,五塊二小組:常永恒,孫東升,李強,吳春亮,涂留定); String s=e.getActionCommand();if(s.equals(重置)clear();else if(s.equals(提交)submit();else if(e.getSource()=txtName)txtPassword.requestFocus();else if(e.getSource()=txtPassword)submit();else if(s.equals(關閉)System.exit(0);15 public static void main(String args) new ManagerWindow(); 16程序運行結果開始界面17錄入學生信息修改學生信息18刪除學生信息查詢學生信息19健壯性測試當沒有輸入任何信 息時錄入進行提示當帳號密碼輸入錯誤進行提示20當沒有輸入信息時查詢進行提示當沒有輸入學號刪除時進行提示2

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論