《java程序設(shè)計(jì)》學(xué)生管理系統(tǒng)報(bào)告(共21頁)_第1頁
《java程序設(shè)計(jì)》學(xué)生管理系統(tǒng)報(bào)告(共21頁)_第2頁
《java程序設(shè)計(jì)》學(xué)生管理系統(tǒng)報(bào)告(共21頁)_第3頁
《java程序設(shè)計(jì)》學(xué)生管理系統(tǒng)報(bào)告(共21頁)_第4頁
《java程序設(shè)計(jì)》學(xué)生管理系統(tǒng)報(bào)告(共21頁)_第5頁
已閱讀5頁,還剩16頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、 Java程序設(shè)計(jì)結(jié)課報(bào)告課程名稱 JAVA程序設(shè)計(jì) 設(shè)計(jì)題目 學(xué)生信息管理系統(tǒng) 專業(yè)班級(jí) 信科101班 學(xué) 號(hào) 09 學(xué)生姓名 XX 教 師 彭 潔 信息工程系目 錄目 錄II第1章 系統(tǒng)簡介31.1 系統(tǒng)功能31.2 系統(tǒng)引用例子3第2章 表的設(shè)計(jì)42.1 系統(tǒng)數(shù)據(jù)庫表結(jié)構(gòu)4第3章 連接數(shù)據(jù)庫的實(shí)現(xiàn)53.1 SQL Server數(shù)據(jù)庫連接的關(guān)鍵代碼5第4章 系統(tǒng)詳細(xì)設(shè)計(jì)64.1系統(tǒng)登錄模塊設(shè)計(jì)64.2 系統(tǒng)主界面詳細(xì)設(shè)計(jì)94.3 學(xué)生信息增刪改模塊設(shè)計(jì)104.4 學(xué)生信息查詢模塊設(shè)計(jì)124.5 注冊(cè)子管理員模塊設(shè)計(jì)15答辯記錄20成績考核表20學(xué)生信息管理系統(tǒng)第1章 系統(tǒng)簡介1.1 系統(tǒng)功

2、能本系統(tǒng)主要功能:1) 通過數(shù)據(jù)校驗(yàn)如果數(shù)據(jù)校驗(yàn)成功,顯示主界面;2)登入后查詢所有學(xué)生信息;3)窗體實(shí)現(xiàn)對(duì)學(xué)生信息的增加、刪除、修改;4)模糊查詢,根據(jù)姓名或者一個(gè)字查詢;5)實(shí)現(xiàn)子管理員的注冊(cè),并且寫入注冊(cè)信息到記事本,并實(shí)現(xiàn)可以用新注冊(cè)的管理賬號(hào)登入系統(tǒng)主界面1.2 系統(tǒng)引用例子課本P275頁 15.5和課本P386頁 21.6第2章 表的設(shè)計(jì)2.1 系統(tǒng)數(shù)據(jù)庫表結(jié)構(gòu)將系統(tǒng)數(shù)據(jù)庫表結(jié)構(gòu)用表的形式畫出,如:字段名字段類型長度主/外鍵字段值約束對(duì)應(yīng)中文名SNOInt10PNot null學(xué)生編號(hào)SNAMEVarchar20Not null學(xué)生名字SSEXVarchar 1Not null學(xué)生

3、性別表2.1 用戶表(JBXX)SAGEInt2Not null學(xué)生年齡字段名字段類型長度主/外鍵字段值約束對(duì)應(yīng)中文名SNOInt10PNot null學(xué)生編號(hào)JNAMEVarchar20Not null家長名字JTELInt 10Not null家庭電話表2.2 家庭信息表(JTXX)注冊(cè)子管理員的記事本1111.TXT內(nèi)信息如下:yyyy#yyyylinlin#linlinadmin1#1111admin2#2222admin3#3333admin4#4444opop#opopuuuu#uuuubbbb#bbbbtttt#tttt第3章 連接數(shù)據(jù)庫的實(shí)現(xiàn)3.1 SQL Server數(shù)據(jù)庫連

4、接的關(guān)鍵代碼public class DButil Connection con = null;String name = linqun;String passname = linqun;String ul1 = jdbc:oracle:thin::1521:orcl;public Connection getconn() try Class.forName(oracle.jdbc.driver.OracleDriver);System.out.println(數(shù)據(jù)庫驅(qū)動(dòng)加載成功);con = DriverManager.getConnection(ul1, name, pa

5、ssname);System.out.println(數(shù)據(jù)庫連接成功); catch (Exception e) System.out.println(e);return con;public void dbclose(Connection conn, Statement sta, ResultSet rs) try if (rs != null)rs.close();if (conn != null)conn.close();if (sta != null)sta.close(); catch (Exception e) e.printStackTrace();finallySystem.o

6、ut.println(數(shù)據(jù)庫釋放!);第4章 系統(tǒng)詳細(xì)設(shè)計(jì)4.1 系統(tǒng)登錄模塊設(shè)計(jì)4.1.1、運(yùn)行效果圖圖 4.1 登錄主界面效果圖4.1.2、主要代碼public class login extends JDialog static PreparedStatement SQL;private static final long serialVersionUID = 1L;private JLabel l_Id = new JLabel(登陸賬戶, JLabel.CENTER);private JLabel l_pw = new JLabel(登陸密碼, JLabel.CENTER);priv

7、ate JTextField t_Id = new JTextField(10);private JPasswordField t_pw = new JPasswordField(10);private JButton btnLogin;private JButton btnAdd;private JButton btnClose;int num = 3;public login() super();Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();this.setLocation(screenSize.wid

8、th - 300) / 2,(screenSize.height - 200) / 2);this.setResizable(false);getContentPane().setBackground(new Color(225, 225, 225);getContentPane().setLayout(null);initialize();protected void initialize() setTitle(系統(tǒng)登錄);l_Id.setBounds(48, 43, 53, 25);t_Id.setBounds(110, 43, 150, 25);l_pw.setBounds(48, 93

9、, 53, 25);t_pw.setBounds(110, 93, 150, 25);getContentPane().add(l_Id);getContentPane().add(l_pw);getContentPane().add(t_Id);getContentPane().add(t_pw);btnLogin = new JButton();btnLogin.setText(登 錄);btnLogin.setBounds(20, 142, 85, 28);btnLogin.setBackground(new Color(244, 243, 239);btnLogin.addAction

10、Listener(new ActionListener() public void actionPerformed(ActionEvent e) addBtnLoginActionListener(););getContentPane().add(btnLogin);btnAdd = new JButton();btnAdd.setText(注冊(cè));btnAdd.setBounds(105, 142, 85, 28);btnAdd.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e)

11、addNew zc = new addNew();setVisible(false);zc.setVisible(true););getContentPane().add(btnAdd);btnClose = new JButton();btnClose.setText(關(guān) 閉);btnClose.setBounds(190, 142, 85, 28);btnClose.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e) dispose();System.exit(-1););get

12、ContentPane().add(btnClose);private void addBtnLoginActionListener() String id = t_Id.getText();String password = new String(t_pw.getPassword();if (id.equals() JOptionPane.showMessageDialog(this, 帳號(hào)不可為空, 提示,JOptionPane.WARNING_MESSAGE);return; else if (password.equals() JOptionPane.showMessageDialog

13、(this, 密碼不可為空, 提示,JOptionPane.WARNING_MESSAGE);return; else tools t = new tools();boolean success = false; / TODO:數(shù)據(jù)校驗(yàn)success = t.eqes(id, password);if (success) / 如果數(shù)據(jù)校驗(yàn)成功 顯示主界面JOptionPane.showMessageDialog(this, 成功登錄, 提示,JOptionPane.INFORMATION_MESSAGE);new mainView();this.dispose(); else -num;if

14、(num = 0) JOptionPane.showMessageDialog(this, 用戶名或者密碼錯(cuò)誤!您沒有機(jī)會(huì)了);System.exit(0); else JOptionPane.showMessageDialog(this, 用戶名或者密碼錯(cuò)誤!您還有 + num+ 次機(jī)會(huì));public Dimension getPreferredSize() return new Dimension(320, 170);public void show() Toolkit tk = Toolkit.getDefaultToolkit();Dimension screen = tk.getS

15、creenSize();Dimension d = getSize();this.setLocation(screen.width - d.width) / 2,(screen.height - d.height) / 2);/ 輸入密碼后回車相當(dāng)于點(diǎn)擊了登錄按鈕getRootPane().setDefaultButton(btnLogin);t_pw.requestFocus();setDefaultCloseOperation(DISPOSE_ON_CLOSE);setSize(300, 220);super.show();public static void main(String ar

16、gs) DButil util = new DButil();util.getconn();login loginFrame = new login();loginFrame.setVisible(true);4.2 系統(tǒng)主界面詳細(xì)設(shè)計(jì)4.2.1、運(yùn)行效果圖圖 4.2 登錄后系統(tǒng)界面效果圖4.2.2、主要代碼public mainView() super();setTitle(所有學(xué)生信息);setBounds(350, 150, 700, 400);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setVisible(true);final JS

17、crollPane scrollPane = new JScrollPane();con = db.getconn();Vector tableValueV, columnNameV;/ 存放列名columnNameV = new Vector();columnNameV.add(學(xué)號(hào));columnNameV.add(名字);columnNameV.add(性別);columnNameV.add(年齡);tableValueV = new Vector();scrollPane.setViewportView(table);final JPanel panel = new JPanel();

18、getContentPane().add(panel, BorderLayout.SOUTH);panel.add(new JLabel(編號(hào):);aTextField = new JTextField(, 5);panel.add(aTextField);panel.add(new JLabel(姓名:);bTextField = new JTextField(, 5);panel.add(bTextField);panel.add(new JLabel(性別:);cTextField = new JTextField(, 5);panel.add(cTextField);panel.add

19、(new JLabel(年齡:);dTextField = new JTextField(, 5);panel.add(dTextField);4.3 學(xué)生信息增刪改模塊設(shè)計(jì)4.3.1、增加信息(121,白娘子,M,22)后運(yùn)行效果圖如下:圖 4.3 增加一個(gè)記錄效果圖4.3.2、主要代碼final JButton addButton = new JButton(添加);addButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e) userDao add = new use

20、rDaoImpl();user u = new user();u.setSno(Integer.parseInt(aTextField.getText();u.setsName(bTextField.getText();u.setSsex(cTextField.getText();u.setSage(Integer.parseInt(dTextField.getText();add.addUser(u);setVisible(false);new mainView(););panel.add(addButton);4.3.3、刪除信息編號(hào)為120的學(xué)生信息后結(jié)果如下:圖 4.4 刪除一個(gè)記錄效

21、果圖4.3.4、主要代碼:final JButton delButton = new JButton(刪除);delButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e) userDao del = new userDaoImpl();user ud = new user();int selectedRow = table.getSelectedRow();/ 獲得被選中行的索引if (selectedRow != -1)/ 判斷是否存在被選中行del.deleUser(I

22、nteger.parseInt(aTextField.getText();setVisible(false);tableModel.removeRow(selectedRow););panel.add(delButton);4.3.5、修改信息(105,關(guān)美眉,F(xiàn),41)為(105,關(guān)大俠,M,30)后運(yùn)行效果圖如下:圖 4.5 修改一個(gè)記錄效果圖4.3.6、主要代碼:panel.add(searchButton);final JButton updButton = new JButton(修改);updButton.addActionListener(new ActionListener()

23、 public void actionPerformed(ActionEvent e) userDao update = new userDaoImpl();user upe = new user();aTextField.setEditable(false);int selectedRow = table.getSelectedRow();/ 獲得被選中行的索引if (selectedRow != -1) / 判斷是否存在被選中行upe.setSno(Integer.parseInt(aTextField.getText();upe.setsName(bTextField.getText()

24、;upe.setSsex(cTextField.getText();upe.setSage(Integer.parseInt(dTextField.getText();update.updateUser(upe);setVisible(false);new mainView(););panel.add(updButton);4.4 學(xué)生信息查詢模塊設(shè)計(jì)4.4.1、運(yùn)行效果圖圖 4.6 查詢記錄集效果圖查詢姓趙的人信息:圖 4.7 查詢結(jié)果圖查詢名字帶“山”的人信息:圖 4.8 查詢結(jié)果圖4.4.2、主要代碼:public search() setTitle(根據(jù)姓名查詢學(xué)生信息);setLay

25、out(new BorderLayout();setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);validate();setBounds(350, 150, 650, 400);final JPanel pane = new JPanel();jl=new JLabel(輸入姓或者名查詢);TextField = new JTextField(, 5);jb1 = new JButton(查詢);jb2 = new JButton(返回);pane.add(jl);pane.add(TextField);pane.add(jb1);pane.add(

26、jb2);getContentPane().add(pane, BorderLayout.NORTH);jb1.addActionListener(this);jb2.addActionListener(this);setVisible(true);public void actionPerformed(ActionEvent e) if (e.getActionCommand().equals(查詢) JScrollPane jsp = new JScrollPane();Vector tableValueV,columnNameV;columnNameV = new Vector();co

27、lumnNameV.add(學(xué)號(hào));columnNameV.add(名字);columnNameV.add(性別);columnNameV.add(年齡);tableValueV = new Vector();userDao user = new userDaoImpl();user u = user.searchByName(TextField.getText();Vector rowV = new Vector();rowV.add(u.getSno();rowV.add(u.getsName();rowV.add(u.getSsex();rowV.add(u.getSage();tabl

28、eValueV.add(rowV);tableModel= new DefaultTableModel(tableValueV, columnNameV);table = new JTable(tableModel);jsp = new JScrollPane(table);jsp.setViewportView(table);getContentPane().add(jsp, BorderLayout.CENTER);setVisible(true);if (e.getActionCommand().equals(返回) new mainView();4.5 注冊(cè)子管理員模塊設(shè)計(jì)4.5.1、

29、運(yùn)行效果圖圖 4.9 注冊(cè)子管理員效果圖4.5.2、主要代碼:public addNew() setDefaultCloseOperation(EXIT_ON_CLOSE);load();this.setVisible(true);Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();this.setLocation(screenSize.width - 300) / 2,(screenSize.height - 200) / 2);this.setResizable(false);this.setTitle(注冊(cè)

30、子管理員界面);this.setVisible(true);this.addWindowListener(new WindowAdapter() public void windowClosing(WindowEvent e) System.exit(0););public void load() Pane = (JPanel) getContentPane();Pane.setLayout(null);setSize(new Dimension(410, 300);setTitle(管理員登入界面);t1.setBounds(70, 50, 100, 30);t2.setBounds(70,

31、 80, 100, 30);t3.setBounds(70, 110, 100, 30);t4.setBounds(250, 50, 100, 30);t5.setBounds(250, 80, 100, 30);f1.setBounds(150, 50, 100, 20);f2.setBounds(150, 80, 100, 20);f3.setBounds(150, 110, 100, 20);b1.setFont(new java.awt.Font(Botton, Font.BOLD, 12);b1.setBounds(120, 140, 60, 50);b2.setFont(new j

32、ava.awt.Font(Dialog, Font.BOLD, 12);b2.setBounds(200, 140, 60, 50);Pane.add(t1);Pane.add(t2);Pane.add(t3);Pane.add(t4);Pane.add(t5);Pane.add(f1);Pane.add(f2);Pane.add(f3);Pane.add(b1);Pane.add(b2);b1.addActionListener(this);b2.addActionListener(this);4.5.3、當(dāng)注冊(cè)名已經(jīng)存在時(shí)效果如下:圖 4.10 驗(yàn)證注冊(cè)界面4.5.4、成功注冊(cè)時(shí)效果如下:

33、(用戶名:qunqun;密碼:qunqun)圖 4.11 注冊(cè)成功界面4.5.5、主要代碼public void actionPerformed(ActionEvent e) if (e.getActionCommand().equals(注冊(cè)) if (tools.indes(f1.getText() & tools.indes(f2.getText() if (tools.eqes(f1.getText(), f2.getText() JOptionPane.showMessageDialog(this, 該用戶已被注冊(cè),請(qǐng)重新輸入!);System.exit(0); else tools

34、.addUser(f1.getText(), f1.getText();JOptionPane.showMessageDialog(this, 你已經(jīng)成功注冊(cè));System.exit(0);if (f1.getText().equals() | f2.getText().equals() JOptionPane.showMessageDialog(this, 帳號(hào)或密碼長度有誤, 提示,JOptionPane.WARNING_MESSAGE);if (e.getActionCommand().equals(退出) System.exit(0);4.5.6、新注冊(cè)管理員(用戶名:qunqun;密碼:qunqun)登入效果如下:圖 4 .12 登錄界面圖 4 .13 登錄成功界面4.5.7、主要代碼:static boolean eqes(String admin, String passwd) boo

溫馨提示

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

最新文檔

評(píng)論

0/150

提交評(píng)論