freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于數(shù)據(jù)結(jié)構(gòu)的學(xué)籍管理系統(tǒng)方案(編輯修改稿)

2025-06-08 23:05 本頁面
 

【文章內(nèi)容簡介】 [3] 龔永罡,陳昕 [M].北京:.[4] 劉兆宏,鄭莉,陳建,羅頻捷 [M].北京:.[5] 王舜燕,鐘珞 [M].北京:.[6](美)Cay 、Gary Cornell(葉乃文、鄺勁筠 等譯) 核心技術(shù)卷(第七版)[M].北京:.[7]付京周等編,精通Hibernate..JaVa數(shù)據(jù)庫持久層開發(fā)實踐.人民郵電出版社,2007.5[8]張孝祥.深入體驗Java Web開發(fā)內(nèi)幕一核心基礎(chǔ).北京:電子工業(yè)出版社,2006[9]何志堅.醫(yī)藥企業(yè)營銷財務(wù)管理實戰(zhàn)寶典.海洋出版社,2002[10]眭碧霞李春華張偉.ASP.NET程序設(shè)計與開發(fā).西安電子科技大學(xué)出版社[11]王勇、蓋江南、尚紅聽譯,ASP.NET寶典.北京:電子工業(yè)出版社,2002[12]萬江平.軟件工程[M].北京:交通大學(xué)出版社,2006 致 謝這次的課程設(shè)計,都是由自己獨立完成所選的課題,不過還是得到了來自很多方面的幫助。在此首先要感謝學(xué)院提供給我這次實踐的機會,讓我們有機會貼近現(xiàn)實,感受成功的喜悅;其次要感謝實驗機房的老師提供優(yōu)良的實驗設(shè)備供我們做課程設(shè)計,正是這種良好的課程設(shè)計的環(huán)境讓我們整個課程設(shè)計過程心情都非常愉快。再次要感謝周輝奎老師的辛勤指導(dǎo),每當我們遇到疑難問題時,是他一次次不厭其煩地解釋和悉心地指導(dǎo),我們才能闖過一個個難關(guān),到達勝利的彼岸,是他給我們提供了一次寶貴的檢驗自己的機會。最后也要感謝同學(xué)們的幫助,有了他們的幫助使我遇到任何困難都覺得不是一個人在戰(zhàn)斗。感謝所有在課程設(shè)計過程中幫助過我的人! 附錄package student。import .*。import .*。import .*。import .*。import 。public class Stuaccess extends JFrame implements ActionListener {Container con。JMenuBar Jbar。JMenu menuj。JMenuItem input, change, search, delete。// 四項功能輸入,修改,查找,刪除JLabel lab1。JPanel JCenter。File fi1。Hashtable ha1。input intinfo。change chginfo。search schinfo。delete delinfo。public Stuaccess() { super(南昌工學(xué)院學(xué)籍管理系統(tǒng))。 con = getContentPane()。 (new BorderLayout())。 ha1 = new Hashtable()。 fi1 = new File()。 if (!()) { try { FileOutputStream out = new FileOutputStream(fi1)。 ObjectOutputStream objectOut = new ObjectOutputStream(out)。 (ha1)。 ()。 ()。 }// try catch (IOException e) { } }// if = new JMenuItem(輸入學(xué)生的信息)。 = new JMenuItem(修改學(xué)生的信息)。 = new JMenuItem(查找學(xué)生的信息)。 = new JMenuItem(刪除學(xué)生的信息)。 Jbar = new JMenuBar()。 menuj = new JMenu(功能)。 (input)。 (change)。 (search)。 (delete)。 (menuj)。 setJMenuBar(Jbar)。 lab1 = new JLabel(歡迎進入南昌工學(xué)院學(xué)籍管理系統(tǒng), )。 (new Font(隸書, , 60))。 ()。 add(lab1,)。 setBounds(100,100,500,400)。 (this)。 (this)。 (this)。 (this)。 intinfo = new input(fi1)。 chginfo = new change(fi1)。 delinfo = new delete(fi1)。 schinfo = new search(fi1)。 //(true)。 ()。 setVisible(true)。 setSize(500, 400)。 ()。 } public void actionPerformed(ActionEvent e) { if (() == input) { (true)。 (false)。 (false)。 (false)。 } else if (() == search) { (false)。 (false)。 (false)。 (true)。 }else if(()==change){ (false)。 (true)。 (false)。 (false)。 } else if(()==delete){ (false)。 (false)。 (true)。 (false)。 } } public static void main(String args[]) { new Stuaccess()。 }}package student。public class Student implements { String name。 String number。 String department。 String sex。 String birth。 String grade。 public Student(){} public void setname(String name){ =name。 } public String getname(){ return 。 } public void setnumber(String number){ =number。 } public String getnumber(){ return 。 } public void setdepartment(String department){ =department。 } public String getdepartment(){ return 。 } public void setsex(String sex){ =sex。 } public String getsex(){ return 。 } public void setbirth(String birth){ =birth。 } public String getbirth(){ return 。 } public void setgrade(String grade){ =grade。 } public String getgrade(){ return 。 }}package student。import .*。import .*。import .*。import .*。import 。public class input extends JFrame implements ActionListener { JTextField name, number, birth, grade, department。// 學(xué)生的信息項。\ JRadioButton male, female。// 單選按鈕 Student Stu。 ButtonGroup group。// 形成單選效果 JButton confirm, reset。 File fi1。 FileInputStream fin。// 文件輸入流 FileOutputStream fou。// 文件輸出流寫入數(shù)據(jù) ObjectInputStream oin。// 對象輸入流 ObjectOutputStream oou。// 對象輸出流 Hashtable ha1。// 哈希圖數(shù)據(jù)結(jié)構(gòu)來儲存數(shù)據(jù) public input(File file) { super(輸入界面)。 = file。 name = new JTextField(10)。 number = new JTextField(10)。 birth = new JTextField(10)。 grade = new JTextField(10)。 department = new JTextField(10)。 group = new ButtonGroup()。 male = new JRadioButton(男, true)。 female = new JRadioButton(女, false)。 (male)。 (female)。 confirm = new JButton(錄入)。 reset = new JButton(重置)。 ha1 = new Hashtable()。 (this)。 (this)。 Box box1 = ()。 (new JLabel(學(xué)號:, ))。 (number)。 Box box2 = ()。 (new JLabel(姓名:, ))。 (name)。 Box box3 = ()。 (new JLabel(性別:, ))。 (male)。 (female)。 Box box4 = ()。 (new JLabel(專業(yè):, ))。 (department)。 Box box5 = ()。 (new JLabel(年級:, ))。 (grade)。 Box box6 = ()。 (new JLabel(出生:, ))。 (birth)。 Box boxc = ()。// 垂直的Box容器 (box1)。 (box2)。 (box3)。 (box4)。 (box5)。 (box6)。 (())。// 盡可能把上面的box分開。 JPanel JP1 = new JPanel()。 (boxc)。 JPanel JP2 = new JPanel()。 (confirm)。 (reset)。 setLayout(new BorderLayout())。 add(JP1, )。 add(JP2, )。 validate()。// 確保布局的有效性。 setBounds(300, 500, 200, 300)。 setSize(500, 300)。 // setVisible(false)。 } public void actionPerformed(ActionEvent e) { if (() == confirm) { String nu = 。 nu = ()。 if (() 0) { try { fin = new FileInputStream(fi1)。 oin = new ObjectInputStream(fin)。 ha1 = (Hashtable) ()。 ()。 ()。 }// try catch (Exception e1) { } if ((nu)) { String warning = 該生信息已存在。 (this, warning, 重復(fù)了, )。 } else { String m = 基本信息將被錄入!。 int ok = (this, m, 確認, , )。 if (ok == ) { String na = ()。 String bir =
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1