资源简介

图书管理系统:调查学校图书馆,设计一个图书管理系统。 图书管理系统具有管理员登陆,图书维护,图书管理和系统维护四个功能模块组成。

资源截图

代码片段和文件信息

package windows;

import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;

import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
import javax.swing.SwingConstants;

@SuppressWarnings(“serial“)
public class Author_new extends Jframe{
private JTextArea textArea ;
private JTextArea textArea_1 ;
private JTextArea textArea_2 ;
private JTextArea textArea_3 ;

public Author_new() {
settitle(“图书作者新增“);
setVisible(true);
setBounds(100 100 450 300);
setLocation(800720);
setDefaultCloseOperation(Jframe.DISPOSE_ON_CLOSE);
getContentPane().setLayout(null);

JLabel label = new JLabel(“\u4F5C\u8005\u5E74\u9F84\uFF1A“);
label.setFont(new Font(“微软雅黑“ Font.PLAIN 12));
label.setHorizontalAlignment(SwingConstants.CENTER);
label.setBounds(203 88 96 15);
getContentPane().add(label);

textArea = new JTextArea();
textArea.setColumns(10);
textArea.setBounds(108 35 83 24);
getContentPane().add(textArea);

JLabel label_1 = new JLabel(“\u4F5C\u8005\u63CF\u8FF0\uFF1A“);
label_1.setFont(new Font(“微软雅黑“ Font.PLAIN 12));
label_1.setHorizontalAlignment(SwingConstants.CENTER);
label_1.setBounds(10 129 96 15);
getContentPane().add(label_1);

textArea_1 = new JTextArea();
textArea_1.setColumns(10);
textArea_1.setBounds(309 84 83 24);
getContentPane().add(textArea_1);

JButton button = new JButton(“\u767B\u8BB0“);
button.setIcon(new ImageIcon(IDcard_new.class.getResource(“/images/modify.png“)));
button.setBounds(171 218 84 23);
getContentPane().add(button);

textArea_2 = new JTextArea();
textArea_2.setText(“\u5173\u4E8E\u4F5C\u8005\uFF0C50\u5B57\u4EE5\u5185\u3002“);
textArea_2.setBounds(33 155 359 53);
getContentPane().add(textArea_2);

JLabel label_2 = new JLabel(“\u4F5C\u8005\u6027\u522B\uFF1A“);
label_2.setHorizontalAlignment(SwingConstants.CENTER);
label_2.setFont(new Font(“微软雅黑“ Font.PLAIN 12));
label_2.setBounds(10 88 96 15);
getContentPane().add(label_2);

 textArea_3 = new JTextArea();
textArea_3.setColumns(10);
textArea_3.setBounds(108 84 83 24);
getContentPane().add(textArea_3);

JLabel label_3 = new JLabel(“\u4F5C\u8005\u59D3\u540D\uFF1A“);
label_3.setHorizontalAlignment(SwingConstants.CENTER);
label_3.setFont(new Font(“微软雅黑“ Font.PLAIN 12));
label_3.setBounds(10 39 96 15);
getContentPane().add(label_3);

button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if(New_author()){
JOptionPane.showMessageDialog(null“登记成功啦!!“); 
}

 });
}

 public Boolean New_author() {
  boolean result = false;
           Connection conn = null;
         try {         
           conn = Login.getCon();  //建立数据库连接
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-12-20 16:49  BookMangerDemo\
     文件         465  2018-12-20 16:49  BookMangerDemo\.classpath
     文件         390  2018-12-20 16:33  BookMangerDemo\.project
     目录           0  2018-12-27 14:08  BookMangerDemo\.settings\
     文件          75  2018-12-27 14:08  BookMangerDemo\.settings\org.eclipse.core.resources.prefs
     文件         592  2018-12-20 16:33  BookMangerDemo\.settings\org.eclipse.jdt.core.prefs
     目录           0  2019-01-02 15:32  BookMangerDemo\bin\
     目录           0  2019-01-02 15:32  BookMangerDemo\bin\images\
     文件         664  2018-12-20 17:09  BookMangerDemo\bin\images\about.png
     文件         852  2018-12-20 17:09  BookMangerDemo\bin\images\bookmaintain.png
     文件         646  2018-12-20 17:09  BookMangerDemo\bin\images\bookManager.png
     文件         666  2018-12-20 17:09  BookMangerDemo\bin\images\delete.png
     文件         644  2018-12-20 17:09  BookMangerDemo\bin\images\login.png
     文件       24593  2018-12-20 17:09  BookMangerDemo\bin\images\login_logo1.PNG
     文件       63349  2018-12-20 17:09  BookMangerDemo\bin\images\main.PNG
     文件         611  2018-12-20 17:09  BookMangerDemo\bin\images\modify.png
     文件         725  2018-12-20 17:09  BookMangerDemo\bin\images\reset.png
     文件         628  2018-12-20 17:09  BookMangerDemo\bin\images\search.png
     目录           0  2019-01-02 15:58  BookMangerDemo\bin\windows\
     文件         917  2019-01-02 16:12  BookMangerDemo\bin\windows\Author_new$1.class
     文件        3978  2019-01-02 16:12  BookMangerDemo\bin\windows\Author_new.class
     文件         982  2019-01-02 16:00  BookMangerDemo\bin\windows\Book_borrow$1.class
     文件         985  2019-01-02 16:00  BookMangerDemo\bin\windows\Book_borrow$2.class
     文件        5254  2019-01-02 16:00  BookMangerDemo\bin\windows\Book_borrow.class
     文件         984  2019-01-02 16:02  BookMangerDemo\bin\windows\Book_change$1.class
     文件        5996  2019-01-02 16:02  BookMangerDemo\bin\windows\Book_change.class
     文件         921  2019-01-02 16:02  BookMangerDemo\bin\windows\Book_delete$1.class
     文件        4063  2019-01-02 16:02  BookMangerDemo\bin\windows\Book_delete.class
     文件         682  2019-01-02 16:12  BookMangerDemo\bin\windows\Book_insert$1.class
     文件         981  2019-01-02 16:12  BookMangerDemo\bin\windows\Book_insert$2.class
     文件        4416  2019-01-02 16:12  BookMangerDemo\bin\windows\Book_insert.class
............此处省略49个文件信息

评论

共有 条评论