亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? borrowhistoryall.java~17~

?? 這個是議和功能強大的圖書借閱系統(tǒng) 用java實現(xiàn)的可供各大高校使用
?? JAVA~17~
字號:
package bookmanager;import javax.swing.*;import com.borland.jbcl.layout.*;import java.awt.*;import java.sql.*;import java.awt.event.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class borrowHistoryall extends JFrame {  ResultSet rs;    //resultset String sql; private DBManager db =new DBManager();  XYLayout xYLayout1 = new XYLayout();  JLabel jLabel4 = new JLabel();  JLabel jLabel1 = new JLabel();  JLabel jLabel3 = new JLabel();  JTextField jTextbdate = new JTextField();  JButton jButtonnext = new JButton();  JButton jButtonpre = new JButton();  JButton jButtonupdate = new JButton();  JButton jButtonlast = new JButton();  JLabel jLabel2 = new JLabel();  JButton jButtonexit = new JButton();  JTextField jTextbname = new JTextField();  JButton jButtondelete = new JButton();  JButton jButtonsearch = new JButton();  JButton jButtonfirst = new JButton();  JTextField jTextpname = new JTextField();  JTextField jTextrdate = new JTextField();  JTextField jTextcomment = new JTextField();  JLabel jLabel5 = new JLabel();  public borrowHistoryall() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  public static void main(String[] args) {    borrowHistoryall borrowHistoryall = new borrowHistoryall();  }  private void jbInit() throws Exception {    jLabel5.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel5.setText("還閱日期");    jTextcomment.setFont(new java.awt.Font("Dialog", 0, 16));    jTextcomment.setText("");    jTextrdate.setFont(new java.awt.Font("Dialog", 0, 16));    jTextrdate.setText("");    jTextpname.setFont(new java.awt.Font("Dialog", 0, 16));    jTextpname.setText("");    jButtonfirst.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonfirst.setText("第一條");     jButtonfirst.addMouseListener(new borrowHistoryall_jButtonfirst_mouseAdapter(this));    jButtonsearch.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonsearch.setText("查詢");    jButtonsearch.addMouseListener(new borrowHistoryall_jButtonsearch_mouseAdapter(this));    jButtondelete.setText("刪除");    jButtondelete.addMouseListener(new borrowHistoryall_jButtondelete_mouseAdapter(this));    jButtondelete.setFont(new java.awt.Font("Dialog", 0, 16));    jTextbname.setFont(new java.awt.Font("Dialog", 0, 16));    jTextbname.setText("");    jButtonexit.setText("退出");    jButtonexit.addMouseListener(new borrowHistoryall_jButtonexit_mouseAdapter(this));    jButtonexit.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel2.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel2.setText("書名");    jButtonlast.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonlast.setText("最后一條");    jButtonlast.addMouseListener(new borrowHistoryall_jButtonlast_mouseAdapter(this));    jButtonupdate.setText("更新");    jButtonupdate.addMouseListener(new borrowHistoryall_jButtonupdate_mouseAdapter(this));    jButtonupdate.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonpre.setText("前一條");    jButtonpre.addMouseListener(new borrowHistoryall_jButtonpre_mouseAdapter(this));    jButtonpre.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonnext.setText("后一條");     jButtonnext.addMouseListener(new borrowHistoryall_jButtonnext_mouseAdapter(this));    jButtonnext.setFont(new java.awt.Font("Dialog", 0, 16));    jTextbdate.setFont(new java.awt.Font("Dialog", 0, 16));    jTextbdate.setText("");    jLabel3.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel3.setText("借閱日起");    jLabel1.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel1.setText("借閱者姓名");    jLabel4.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel4.setText("備注");    this.getContentPane().setLayout(xYLayout1);    xYLayout1.setWidth(662);    xYLayout1.setHeight(351);    this.getContentPane().add(jTextpname, new XYConstraints(226, 39, 116, 26));    this.getContentPane().add(jLabel4, new XYConstraints(72, 242, 66, 29));    this.getContentPane().add(jLabel1, new XYConstraints(75, 31, 88, 33));    this.getContentPane().add(jLabel3, new XYConstraints(74, 135, 87, 29));    this.getContentPane().add(jTextbdate, new XYConstraints(227, 136, 137, -1));    this.getContentPane().add(jButtonnext, new XYConstraints(193, 300, 89, 26));    this.getContentPane().add(jButtonpre, new XYConstraints(110, 299, 82, 26));    this.getContentPane().add(jButtonupdate, new XYConstraints(381, 301, 84, 27));    this.getContentPane().add(jButtonlast, new XYConstraints(282, 300, 98, 27));    this.getContentPane().add(jLabel2, new XYConstraints(76, 78, 89, 35));    this.getContentPane().add(jButtonexit, new XYConstraints(550, 300, 70, 28));    this.getContentPane().add(jTextbname, new XYConstraints(227, 93, 154, 23));    this.getContentPane().add(jButtondelete, new XYConstraints(464, 301, 86, 28));    this.getContentPane().add(jButtonsearch, new XYConstraints(443, 35, 104, 31));    this.getContentPane().add(jButtonfirst, new XYConstraints(23, 298, 86, 26));    this.getContentPane().add(jTextrdate, new XYConstraints(228, 182, 137, -1));    this.getContentPane().add(jTextcomment, new XYConstraints(226, 235, 324, -1));    this.getContentPane().add(jLabel5, new XYConstraints(71, 183, 87, 29));      this.setSize(600,450);  }  void showResult(){    try {        jTextpname.setText(rs.getString("studentname") );       jTextbname.setText(rs.getString("bookname") );       jTextbdate.setText(rs.getString("borrowdate") );       jTextrdate.setText(rs.getString("returndate") );       jTextcomment.setText(rs.getString("comment") );        }     catch (SQLException ex) {        }  }  void jButtonsearch_mouseClicked(MouseEvent e) {    sql="select * from BookBorrow ";        // JOptionPane.showMessageDialog(null,jCombocolor.getSelectedItem().toString().trim() );                   rs =db.getResult(sql);               try {                    if(! rs.equals(null) )                         {  rs.next();                             showResult();                          }                       }               catch (SQLException ex) {                           JOptionPane.showMessageDialog(null," search failed!");                        }  }  void jButtonfirst_mouseClicked(MouseEvent e) {    try {              rs.first() ;              showResult();           }           catch (SQLException ex) {           }  }  void jButtonpre_mouseClicked(MouseEvent e) {    try {                if(! rs.isFirst() )                {  rs.previous();                   showResult();                }              }              catch (SQLException ex) {              }  }  void jButtonnext_mouseClicked(MouseEvent e) {    try {                if(! rs.isLast())                 {  rs.next();                    showResult();                 }               }                   catch (SQLException ex) {                     }  }  void jButtonlast_mouseClicked(MouseEvent e) {    try {                  rs.last();                   showResult();                }                catch (SQLException ex) {                }  }  void jButtonupdate_mouseClicked(MouseEvent e) {//update      sql="update Books set borrowdate='"+jTextbdate.getText().trim() +"',";      sql=sql+" returndate ='"+jTextrdate.getText().trim() +"',";      sql=sql+" comment ='"+jTextcomment.getText().trim() +"'";      sql=sql+" where studentname='"+jTextpname.getText() +"'";      sql=sql+" and bookname='"+jTextbname.getText() +"'";      if(db.executeSql(sql))          {             JOptionPane.showMessageDialog(null,"successed!");          }     else          {             JOptionPane.showMessageDialog(null,"failed!");          }  }  void jButtondelete_mouseClicked(MouseEvent e) {    sql="delete from Books ";    sql=sql+" where studentname='"+jTextpname.getText() +"'";    sql=sql+" and bookname='"+jTextbname.getText() +"'";                    if(db.executeSql(sql))                     System.out.println(sql+"delete successed!") ;                   else                      System.out.println(sql+"delete failed!!!") ;  }  void jButtonexit_mouseClicked(MouseEvent e) {  dispose();  }}class borrowHistoryall_jButtonsearch_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonsearch_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonsearch_mouseClicked(e);  }}class borrowHistoryall_jButtonfirst_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonfirst_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonfirst_mouseClicked(e);  }}class borrowHistoryall_jButtonpre_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonpre_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonpre_mouseClicked(e);  }}class borrowHistoryall_jButtonnext_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonnext_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonnext_mouseClicked(e);  }}class borrowHistoryall_jButtonlast_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonlast_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonlast_mouseClicked(e);  }}class borrowHistoryall_jButtonupdate_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonupdate_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonupdate_mouseClicked(e);  }}class borrowHistoryall_jButtondelete_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtondelete_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtondelete_mouseClicked(e);  }}class borrowHistoryall_jButtonexit_mouseAdapter extends java.awt.event.MouseAdapter {  borrowHistoryall adaptee;  borrowHistoryall_jButtonexit_mouseAdapter(borrowHistoryall adaptee) {    this.adaptee = adaptee;  }  public void mouseClicked(MouseEvent e) {    adaptee.jButtonexit_mouseClicked(e);  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品一区蜜桃臀影院| 蜜桃视频在线观看一区| 色婷婷一区二区三区四区| 国产精品黄色在线观看| 99久久精品一区| 国产精品久久久久久久第一福利 | 国产盗摄一区二区三区| 91精品国产综合久久久久| 午夜精品免费在线观看| 精品国产成人在线影院| 欧美日韩一区二区在线观看 | 欧美日本视频在线| 日韩精品成人一区二区三区| 久久久亚洲精品一区二区三区| 成人国产在线观看| 青青草成人在线观看| 国产精品水嫩水嫩| 欧美一区二区三区思思人| 成人激情小说乱人伦| 日日摸夜夜添夜夜添精品视频| 国产精品美女久久久久aⅴ| 91丨九色丨蝌蚪丨老版| 日韩精品中文字幕一区| 777午夜精品视频在线播放| 精品伦理精品一区| 日韩美女精品在线| 欧美日韩在线播放三区四区| 亚洲视频小说图片| 国产网站一区二区三区| 欧美在线免费观看亚洲| 欧美一区二区三区四区五区| 亚洲国产成人tv| 91麻豆文化传媒在线观看| 亚洲国产精品t66y| 成人免费视频视频| 国产精品久久久一本精品| 成人开心网精品视频| 亚洲精品日韩一| 成人激情图片网| 亚洲免费观看视频| 欧美日韩视频在线第一区| 一区二区三区四区av| 欧美性xxxxxxxx| 另类综合日韩欧美亚洲| 精品少妇一区二区三区免费观看 | 亚洲精品国产成人久久av盗摄 | 亚洲成av人**亚洲成av**| 欧美日韩精品三区| 韩国精品在线观看| 国产精品久久久久影院老司| 91麻豆免费看| 美女尤物国产一区| 国产欧美日韩三区| 欧美中文字幕不卡| 精品一区在线看| 亚洲天堂中文字幕| 3atv在线一区二区三区| 国产乱色国产精品免费视频| 自拍视频在线观看一区二区| 欧美日韩成人激情| 粉嫩高潮美女一区二区三区| 亚洲精品国产成人久久av盗摄| 欧美顶级少妇做爰| 不卡一区二区中文字幕| 亚洲超碰97人人做人人爱| 久久蜜桃香蕉精品一区二区三区| 99精品久久久久久| 蜜臂av日日欢夜夜爽一区| 国产精品二三区| 精品少妇一区二区三区| 91黄色在线观看| 狠狠色丁香婷婷综合久久片| 亚洲乱码日产精品bd| 精品国产成人系列| 欧美中文字幕一区| 成人激情开心网| 裸体在线国模精品偷拍| 一区二区三区四区av| 国产亚洲欧美一级| 欧美一级黄色录像| 在线视频你懂得一区| 成人美女视频在线看| 麻豆精品久久精品色综合| 亚洲欧美日韩一区二区| 久久婷婷久久一区二区三区| 欧美日韩精品福利| 色激情天天射综合网| 成人精品鲁一区一区二区| 免费av成人在线| 亚洲成人久久影院| 综合婷婷亚洲小说| 久久精品男人天堂av| 91精品国产综合久久精品麻豆| 91免费在线看| 成人涩涩免费视频| 高清不卡一区二区| 国产高清精品在线| 久久精品国产精品亚洲精品| 日日夜夜免费精品视频| 亚洲国产美女搞黄色| 亚洲黄一区二区三区| 中文字幕永久在线不卡| 国产精品亲子伦对白| 国产欧美精品一区二区色综合| 日韩欧美在线网站| 日韩你懂的电影在线观看| 欧美成人女星排行榜| 欧美精品黑人性xxxx| 欧美精品自拍偷拍动漫精品| 在线一区二区三区四区| 91久久免费观看| 色婷婷国产精品| 欧美午夜精品一区二区蜜桃| 91高清在线观看| 欧美日韩成人综合天天影院 | 中文字幕+乱码+中文字幕一区| 久久久影院官网| 亚洲国产高清在线观看视频| 国产亚洲精久久久久久| 国产女主播一区| 国产人久久人人人人爽| 中文字幕一区二区在线观看| 亚洲桃色在线一区| 亚洲黄网站在线观看| 亚洲成人黄色影院| 日韩va亚洲va欧美va久久| 麻豆高清免费国产一区| 开心九九激情九九欧美日韩精美视频电影| 人禽交欧美网站| 国产一区三区三区| 国产91综合网| 日本道免费精品一区二区三区| 在线播放亚洲一区| 日韩免费观看高清完整版在线观看| 欧美成va人片在线观看| 国产欧美在线观看一区| 综合av第一页| 日韩二区在线观看| 国产一区二三区| 97成人超碰视| 欧美日韩午夜在线视频| 欧美v日韩v国产v| 国产精品美女久久久久久2018| 亚洲视频在线一区观看| 日产国产高清一区二区三区| 精品一区二区三区不卡| 99久久综合色| 欧美精品vⅰdeose4hd| 国产亚洲成aⅴ人片在线观看 | 国产乱人伦偷精品视频免下载| 成人午夜短视频| 精品视频在线视频| 久久久另类综合| 亚洲一区二区三区不卡国产欧美 | 性久久久久久久久| 国产乱码精品一区二区三区忘忧草| 99re在线视频这里只有精品| 8v天堂国产在线一区二区| 国产丝袜欧美中文另类| 丝袜亚洲另类欧美综合| 成人丝袜高跟foot| 欧美大胆人体bbbb| 亚洲免费毛片网站| 国产又黄又大久久| 欧美一区二区久久| 亚洲精品高清视频在线观看| 国产伦精品一区二区三区免费| 欧美性猛交xxxx乱大交退制版 | 亚洲va中文字幕| 大白屁股一区二区视频| 欧美日韩综合在线免费观看| 国产日韩欧美a| 老司机精品视频线观看86| 在线观看亚洲一区| 亚洲视频每日更新| 国产福利91精品一区| 欧美一区二区三区日韩视频| 樱桃视频在线观看一区| 99久久久久久99| 欧美一区二区免费视频| 午夜一区二区三区在线观看| 91在线视频18| 国产精品美女久久久久高潮| 国内精品伊人久久久久av影院| 欧美福利一区二区| 亚洲风情在线资源站| 欧美综合亚洲图片综合区| 国产精品久久夜| 成人免费的视频| 日本一区二区三区四区在线视频| 久久国产三级精品| 日韩欧美在线影院| 日本aⅴ免费视频一区二区三区| 欧美视频自拍偷拍| 亚洲自拍都市欧美小说| 欧美在线视频日韩| 午夜电影网亚洲视频| 欧美三级电影精品| 舔着乳尖日韩一区| 91精品国产高清一区二区三区|