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

正文內(nèi)容

圖書管理系統(tǒng)java代碼(編輯修改稿)

2025-09-04 08:13 本頁面
 

【文章內(nèi)容簡介】 2 = new JLabel(圖書名:)。 JLabel jLabel3 = new JLabel(作者:)。 JLabel jLabel4 = new JLabel(出版社:)。 JLabel jLabel5 = new JLabel(館藏量:)。 JLabel jLabel6 = new JLabel(剩余館藏量::)。 JLabel jLabel7 = new JLabel(當(dāng)前預(yù)約人數(shù):)。 JTextField bookID = new JTextField(10)。 JTextField bookname= new JTextField(10)。 JTextField author = new JTextField(10)。 JTextField press = new JTextField(10)。 JTextField number = new JTextField(10)。 JTextField lastNumber = new JTextField(10)。 JTextField apointment = new JTextField(10)。 JButton editconfirm = new JButton()。 public bookEdit(){ (修改圖書信息)。 (true)。 try{ Init()。 }catch (Exception e){ ()。 } //設(shè)置居中 Dimension screenSize = ().getScreenSize()。 ((int)( 400)/2,(int)( 300)/2 +45)。 } public void Init() throws Exception{ (600,500)。 c = ()。 (new FlowLayout())。 (jLabel1)。 (null)。 (bookID)。 (jLabel2)。 (null)。 (bookname)。 (jLabel3)。 (null)。 (author)。 (jLabel4)。 (null)。 (press)。 (jLabel5)。 (null)。 (number)。 (jLabel6)。 (null)。 (lastNumber)。 (jLabel7)。 (null)。 (apointment)。 //更改信息的組件添加完畢 (確認(rèn)修改)。 (editconfirm)。 (this)。 //添加事件監(jiān)聽 } public void actionPerformed(ActionEvent e){ Object obj = ()。 if(obj == editconfirm){ bookBean rs = new bookBean()。 ((),(),(), (),(),(),())。 ()。 } } }借閱圖書:package bookDB。import .*。import .*。import .*。 public class bookLend extends JFrame implements ActionListener{ Container c。 JLabel jLabel1 = new JLabel()。 JLabel jLabel2 = new JLabel()。 JLabel jLabel3 = new JLabel()。 JLabel jLabel4 = new JLabel()。 JTextField bookname = new JTextField(10)。 JTextField bookID = new JTextField(10)。 JTextField username= new JTextField(10)。 JTextField userID = new JTextField(10)。 JButton bookconfirm = new JButton()。 public bookLend(){ (借閱圖書)。 (true)。 try{ Init()。 }catch (Exception e){()。} //設(shè)置居中 Dimension screenSize = ().getScreenSize()。 ((int)( 400)/2,(int)( 300)/2 +45)。 } public void Init() throws Exception{ (600,500)。 c = ()。 (new FlowLayout())。 (借閱圖書名: )。 (jLabel1)。 (null)。 (bookname)。 (借閱圖書ID: )。 (jLabel2)。 (null)。 (bookID)。 (確定)。 //設(shè)置按鈕 (bookconfirm)。//添加按鈕控件 (this)。//添加監(jiān)聽事件 } public void actionPerformed(ActionEvent e){ Object obj = ()。 if(obj == bookconfirm){ bookBean rs = new bookBean()。 int bookid = (())。 //獲取登錄用戶的id userbean login = new userbean()。 String loginID = 。 //(loginID)。 ((),bookid,loginID)。 ()。 } }} 還書:package bookDB。import .*。 import .*。 import .*。public class bookReturn extends JFrame implements ActionListener{ Container c。 //JLabel jLabel1 = new JLabel()。 //歸還圖書的名稱 //JTextField bookname = new JTextField(10)。 JLabel jLabel2= new JLabel()。 //歸還圖書的id JTextField bookid = new JTextField(10)。 JButton reconfirm = new JButton()。 public bookReturn(){ (歸還圖書)。 (true)。 try{ Init()。 }catch (Exception e){ ()。 } //設(shè)置居中 Dimension screenSize = ().getScreenSize()。 ((int)( 400)/2,(int)( 300)/2 +45)。 } public void Init() throws Exception{ (300,500)。 c = ()。 (new FlowLayout())。 (歸還圖書id: )。 (jLabel2)。 (null)。 (bookid)。 (確定)。 (reconfirm)。 (this)。 } public void actionPerformed(ActionEvent e){ Object obj = ()。 if(obj == reconfirm){ bookBean rs = new bookBean()。 //int bookId = (())。 (())。 //()。 } } } 查詢圖書:package bookDB。import .*。import .*。 import javax.*。 import .*。public class bookSearch extends JFrame implements ActionListener{ //JTextArea searchResult = new JTextArea(5,10)。//設(shè)置多行文本區(qū)域用來顯示查詢結(jié)果 Container c。 JLabel jLabel1 = new JLabel(請輸入所要查詢圖書名:)。 JTextField bookname = new JTextField(20)。 JButton confirm = new JButton()。 public bookSearch(){ (按圖書名查詢)。 (true)。 try{ Init()。 }catch (Exception e){ ()。 } //設(shè)置居中 Dimension screenSize = ().getScreenSize()。 ((int)( 400)/2,(int)( 300)/2 +45)。 } public void Init() throws Exception{ (300,500)。 //(searchResult,)。//將查詢結(jié)果顯示區(qū)放在下方 c = ()。 //獲取內(nèi)容面板 (new FlowLayout())。 //(new Font(Dialog,0,12))。 //設(shè)置字體 (jLabel1)。 (bookname)。 (確定)。 (new Font(Dialog,0,12))。 (confirm)。 (this)。 //添加事件監(jiān)聽 } public void actionPerformed(ActionEvent e){ Object obj = ()。 if(obj == confirm){ //()。 // 清空緩沖區(qū) bookBean rs = new bookBean()。 String bookName = ()。 (bookName)。//執(zhí)行查詢方法 //((()))。 } }} 對圖書操作的方法:package bookDB。import 。 import 。import 。import 。 public class bookBean { String sql。 ResultSet rs = null。 int bookid。 String bookname。 //書名 int number。 //館藏量 String author。//作者 String press。 //出版社 int lastNumber。//剩余館藏量 int apointmentNum。//預(yù)約數(shù) String userName,userID。 //添加圖書信息 public void bookAdd(String bookname,int number,String author,String press){ DatabaseConn2 DB = new DatabaseConn2()。 = bookname。 = number。 = author。 = press。 = number。//添加圖書時,剩余館藏量=館藏量 if(()||()||()){ //提示完善圖書信息 (null,請完善圖書信息,錯誤,)。 return。 }else{ sql = insert into book(bookName,number,author,press,lastNumber) values + (39。+bookname+39。,39。+number+39。,39。+author+39。,39。+press+39。,39。+number+39。)。 try{ //()。 //創(chuàng)建數(shù)據(jù)庫鏈接 (sql)。 //更新語句 (null,成功添加一條記錄!)。 //提示添加成功 }catch (Exception e){ (e)。
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1