⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readerlist.java~2~

📁 这是一个图书管理系统
💻 JAVA~2~
字号:
package bookmanager;import javax.swing.*;import com.borland.jbcl.layout.*;import java.awt.*;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class readerList extends JFrame {  XYLayout xYLayout1 = new XYLayout();  JTable jTableResult = new JTable(model);  JLabel jLabel2 = new JLabel();  JScrollPane jScrollPane1 = new JScrollPane();  JLabel jLabel1 = new JLabel();  JTextField jTextFieldReader = new JTextField();  JTextField jTextFieldBookName = new JTextField();  JButton jButtonSearch = new JButton();  public readerList() {    try {      jbInit();    }    catch(Exception e) {      e.printStackTrace();    }  }  public static void main(String[] args) {    readerList readerList = new readerList();  }  private void jbInit() throws Exception {    jLabel2.setFont(new java.awt.Font("Dialog", 0, 16));    jLabel2.setText("书名:");    xYLayout1.setWidth(550);    xYLayout1.setHeight(364);    this.getContentPane().setLayout(xYLayout1);    jLabel1.setText("借阅者:");    jLabel1.setFont(new java.awt.Font("Dialog", 0, 16));    jTextFieldReader.setText("");    jTextFieldReader.setFont(new java.awt.Font("Dialog", 0, 16));    jTextFieldBookName.setText("");    jTextFieldBookName.setFont(new java.awt.Font("Dialog", 0, 16));    jButtonSearch.setText("查询");    jButtonSearch.addMouseListener(new borrowInfoList_jButtonSearch_mouseAdapter(this));    jButtonSearch.setFont(new java.awt.Font("Dialog", 0, 16));    this.getContentPane().add(jTextFieldReader, new XYConstraints(127, 22, 100, -1));    this.getContentPane().add(jLabel2, new XYConstraints(231, 20, 51, 29));    this.getContentPane().add(jScrollPane1, new XYConstraints(45, 95, 456, 238));    this.getContentPane().add(jLabel1, new XYConstraints(46, 22, 78, 29));    this.getContentPane().add(jTextFieldBookName, new XYConstraints(283, 20, 122, 31));    this.getContentPane().add(jButtonSearch, new XYConstraints(431, 19, 87, -1));    jScrollPane1.add(jTableResult, null);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -