學(xué)生考勤管理系統(tǒng)(JAVA語言)_第1頁
學(xué)生考勤管理系統(tǒng)(JAVA語言)_第2頁
學(xué)生考勤管理系統(tǒng)(JAVA語言)_第3頁
學(xué)生考勤管理系統(tǒng)(JAVA語言)_第4頁
學(xué)生考勤管理系統(tǒng)(JAVA語言)_第5頁
已閱讀5頁,還剩6頁未讀, 繼續(xù)免費閱讀

下載本文檔

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

文檔簡介

1、JAVA程序設(shè)計學(xué)生考勤管理系統(tǒng)課程名稱:JAVA程序設(shè)計設(shè)計題目:學(xué)生考勤管理系統(tǒng)(JAVA)指導(dǎo)老師:XXX班級:數(shù)計X級X班姓名: XXX學(xué)號: XXXXXXXXXX時間: 2016年某月某日編程工具:MyEclipse (宣版的)編程電藺:DELL操作系知Windows 7(自己換的)顯卡:NVIDIA編程環(huán)境:JAVA gW設(shè)計功能: 查看學(xué)生信息 學(xué)生考H 增加,M除,修改學(xué)生信息實駛代馬:package manger;import javax.swing.JDialoQ;import javax.swing.JFrame;import javax.swino.JOptionPan

2、e;Import javax.swin0.JPanel;import java.awt.BorderLayout;import java.awt.Dimension;import java.awt.Toolkit;Import javax.swlnaJDesktopPane;import javax.swino.JButton;import java.awt.Rectanole;import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.Statement;

3、Import javax.swino.JTextField;import javax.swing.JLabel;public class AddForm private JFrame jFrame = null;private J Panel JContentPane = null;private J Desktoppane jDesktopPane = null;private JButton jBirttonOK = null;private JButton jBirttonCancel = null;private JTextField jTextName = null;private

4、JTextField jTextNum = null;private JTextField jTextGrade = null;private JLabel jLabelName = null;private JLabel jLabelNum = null;private JLabel jLabelGrade = null;J Frame getJFrameO if (jFrame = null) jFrame = new JFrameO;jFrame.setTitleCS 加學(xué)生信息,);jFrame.setSize(new Dimension(242,205);Dimension scre

5、enSize = Toolkit.getDefaultToolkit().getScreenSize()y/n 口居中顯示screenSize = Toolkit.getDefaultToolkft().oetScreenSize();jFrame.setLocation(screenSize.width-jFrame.oetWidth()/2,(screenSize.heiaht-jFrame.oetHeight()/2); jFrame.setContentPane(oetJContentPaneO);)return jFrame;)private J Panel QetJContentP

6、aneO (if OContentPane = null) jContentPane = new JPanelO;jContentPane.setLayout(new BorderLayoutO);jContentPane.add(oetJDesktopPane()f BorderLayout.CENTER);)return jContentPane;)private JDesktopPane getJDesktopPane() If ODesktopPane = null) jLabelGrade = new JLabelO;jLabelGrade.setBounds(new Rectan0

7、le(3Ov 100,38,18);jLabelGrade.setText('S 級:);jLabelNum = new JLabelO;jLabelNum.setBounds(new Rectangle(30f 60,38,18);ILabelNum.setTextf 號jLabelName = new JLabelO;jLabelName.setBounds(new Rectangle(30,20,38,18);jLabelName.setTextC# 2 :");jDesktopPane = new JDesktopPaneO;jDesktopPane.add(QetJ

8、ButtonOK()l null);jDesktopPane.add(getJButtonCancel(), null);jDesktopPane.add(oetJTextName()f null);jDesktopPane.add(aetJTextNum(), null);jDesktopPane.add(getJTextGrade()9 null);jDesktopPane.adddLabelNamev null);jDesktopPane.adddLabelNum, null);JDesktopPane.addOLabelGrade, null);return jDesktopPane;

9、)private JButton geUButtonOKO if OButtonOK = null) jButtonOK = new JButtonO;jButtonOK.setBounds(new Rectangle(20f 135,80,22);jButtonOK. setText(提交);jButtonOK.addMouseListener(new java.awt.event.MouseAdapter() public void mouseClickeddava.awt.event.MouseEvent e) try(AddSQLQ; catch (Exception e1)/TODO

10、自動生成catch塊e1.printStackTrace();J/TODO Auto-generated Event stub mouseClicked()private void AddSQLO throws Exception String DBDriversun.jdbc.odbc.JdbcOdbcDriver-;String Str=Bjdbc:odbc:driver=Microsoft Access Driver (*.mdb);DBQ=StulnfoB;Connection con=null;Statement stmUnull;ResultSet rs=null;Class.fo

11、rName(DBDriver);con=DriverManagergetConnection(Str);stmt=con.createStatement();String name = jTextName.getTextO;if(name.equalsn)(stmt.close();con.closeO;JOptionPane.showMessageDialog(new JDialog(),姓名不能為空!");return;)String num = JTextNum.oetTextO;if(num.equals(iB)(stmt.closeO;con.closeO;JOptionP

12、ane.showMessageDialog(new JDialogO/ 學(xué)號不能為空!");return;elsers = stmt.executeQuery('Select * From Stulnfo where Num ="+num+',B);if(rs.next()(stmt.closeO;con.closeO;JOptionPane.showMessageDialog(new JDialogO;學(xué)號重復(fù)!');return;)String grade = jTextGrade.getText();rf(orade.equalsD)(stmt

13、doseO;con.closeO;JOptionPane.showMessaoeDialoo(new JDialoQ()9aS 級不能為空!);return;stmtexecuteUpdateflnsert Into Stulnfo Values(,i+name+'lll'+num+'lf,l,+orade+,)ir);stmt.closeO;con.close();MainForm.Reflesh();oetJFrame(),dispose();JOptionPane.showMessaaeDialog(new JDialogO/S 加成曲););)return jB

14、uttonOK;)private JButton getJButtonCancelO if OButtonCancel = null) jButtonCancel = new JButtonO;jButtonCancel.setBounds(new Rectanole(137,135,80,22);jButtonCancel.setTextC 取消");jButtonCancel.addMouseListener(new java.awtevent.MouseAdapter() public void mouseCllcked(java.awt.eventMouseEvent e) getJFrame().dispose(););)return jButtonCancel;private JTextFleld oeUTextNameO if (jTextName = null) jTextName = new JTextReldO;jTextName.setBounds(new Rectanale(90,20,120,22);)return jTextName;private JTextFleld oetJTextNumO if GTextNum = null) jTextNum = new JTextfieldO;jTextNum.setBounds

溫馨提示

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

最新文檔

評論

0/150

提交評論