01 概述
一款功能强大的图书馆管理系统,功能齐全,小白/大学生项目实训,学习的不二之选。
02 技术
此系统使用 java awt 实现。java.awt是一个软件包,包含用于创建用户界面和绘制图形图像的所有分类。在AWT术语中,诸如按钮或滚动条之类的用户界面对象称为组件。Component类是所有 AWT 组件的根。
03 功能详解
基础维护
图书维护
- 添加:输入图书编号、图书名称、图书页数、图书作者、出版社、库存数量、所属类型等图书信息,点击Save按钮添加新图书。
- 修改:首先根据图书编号查询到所要修改的图书,然后对图书的名称、图书页数、作者、出版时间、定价、库存等信息进行修改。
- 删除:首先根据图书编号查询到所要删除的图书,然后进行删除操作。
读者维护
- 添加:输入读者编号、读者姓名、读者类别、读者性别、可借天数等信息,然后点击“Add”按钮添加新读者。
- 修改:首先根据读者编号查询到要修改的读者信息,再对读者编号、读者姓名、读者类别、读者性别、可借天数等信息进行修改,修改完成点击“保存”按钮完成修改。
- 删除:首先根据读者编号查询到要删除的读者信息,然后进行删除操作。
借阅管理
- 借书管理:首先根据图书编号和读者编号查询到图书和读者信息,在点击“借出”按钮完成借书。
- 还书管理:首先根据图书编号和读者编号查询到图书和读者信息,在点击“还书”按钮完成还书。
查询管理
- 图书查询:输入图书名称、作者、出版时间中的任意一项,点击“查询”按钮查询图书。
- 读者查询:输入读者姓名、读者类型中的任意一项,点击“查询”按钮查询读者。
系统管理
- 修改密码:首先输入旧密码等待校验,旧密码输入正确后即可设定新的密码。
- 退出系统:退出图书管理系统程序。
04 运行截图
添加图书
添加读者
借书管理
图书查询
修改密码
05 主要代码
添加图书
package com.jason.frame;//com.jason.frame.BookAdd.java
import java.awt.*;
import java.awt.event.*;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import javax.swing.JOptionPane;
public class BookAdd extends Frame implements ActionListener{
Toolkit tool= getToolkit();
String url="src/bookbk.png";
Image img=tool.getImage(url);
public void paint(Graphics g){
g.drawImage(img,0,0,this);
}
public void clearAndSetBookId(){
for(int j=0;j240){
lx=50;
ly=ly+30;
}
booklb[i]=new Label(lbname[i]);
booklb[i].setBounds(lx,ly,50,20);
booktxt[i]=new TextField();
booktxt[i].setBounds(lx+60,ly,100,20);
lx=lx+190;
add(booklb[i]);add(booktxt[i]);
}
booktxt[0].setEditable(false);
booktxt[0].setText(str);
booktxt[9].setVisible(false);
booktype.setBounds(300,170,100,20);
add(booktype);
savebtn.setBounds(150,210,80,25);
closebtn.setBounds(280,210,80,25);
add(savebtn);add(closebtn);
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
DbOp.close();
dispose();
}
});
savebtn.addActionListener(this);
closebtn.addActionListener(this);
setLocationRelativeTo(null);
setVisible(true);
}
public static String getInsertOrderedList(){
String returnstring="";
String sql="select * from book";
try{
int count=0;
ResultSet rs=DbOp.executeQuery(sql);
while(rs.next()){
count++;
}
String[] allid=new String[count];
int[] intofid=new int[count];
int i=0;
ResultSet rs1=DbOp.executeQuery(sql);
while(rs1.next()){
allid[i]=rs1.getString("id");
String mystr=allid[i].substring(1);
intofid[i]=Integer.parseInt(mystr);
i++;
}
int temp=-1;
for(int j=0;jtemp){
temp=intofid[j];
}
}
returnstring=String.valueOf(temp+1);
int len=returnstring.length();
for(int f=0;f<5-len;f++){
returnstring="0"+returnstring;
}
returnstring="A"+returnstring;
DbOp.close();
}catch(SQLException ee){
}
return returnstring;
}
public void actionPerformed(ActionEvent e){
Object ob=e.getSource();
if(ob==savebtn){
savebtnActionPerformed();
clearAndSetBookId();
}
if(ob==closebtn){
DbOp.close();
dispose();
}
}
public void savebtnActionPerformed(){
String id=booktxt[0].getText();
String typestr=booktype.getSelectedItem().toString();
String[] inputstring=new String[9];
boolean emptyequals=false;
for(int i=0;i240){
ly=ly+30;
lx=50;
}
readerlb[i]=new Label(labelsign[i]);
readertxt[i]=new TextField();
readerlb[i].setBounds(lx,ly,50,20);
readertxt[i].setBounds(lx+60,ly,100,20);
lx=lx+190;
add(readerlb[i]);
add(readertxt[i]);
}
readertxt[0].setEditable(false);
readertxt[0].setText(str);
readertype=new Choice();
readertype.add("教师");
readertype.add("学生");
readertype.add("作家");
readertype.add("职工");
readertype.add("其他");
readersex=new Choice();
readersex.add("男");
readersex.add("女");
readertxt[2].setVisible(false);
readertxt[3].setVisible(false);
readertype.setBounds(110,80,100,20);
readersex.setBounds(300,80,100,20);
add(readertype);add(readersex);
querybtn=new Button("Add");
closebtn=new Button("Close");
querybtn.setBounds(130,140,50,20);
closebtn.setBounds(310,140,50,20);
add(querybtn);add(closebtn);
querybtn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
updateActionPerformed(e);
clearAndSetReaderId();
}
});
closebtn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
DbOp.close();
dispose();
//System.exit(0);
}
});
addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
DbOp.close();
dispose();
//System.exit(0);
}
});
setLocationRelativeTo(null);
setVisible(true);
}
public static String getInsertOrderedList(){
String returnstring="";
String sql="select * from reader";
try{
int count=0;
ResultSet rs=DbOp.executeQuery(sql);
while(rs.next()){
count++;
}
String[] allid=new String[count];
int[] intofid=new int[count];
int i=0;
ResultSet rs1=DbOp.executeQuery(sql);
while(rs1.next()){
allid[i]=rs1.getString("id");
intofid[i]=Integer.parseInt(allid[i]);
i++;
}
int temp=-1;
for(int j=0;jtemp){
temp=intofid[j];
}
}
returnstring=String.valueOf(temp+1);
int len=returnstring.length();
for(int f=0;f<5-len;f++){
returnstring="0"+returnstring;
}
DbOp.close();
}catch(SQLException ee){
}
return returnstring;
}
public static void updateActionPerformed(ActionEvent e){
String[] readerstr=new String[6];
readerstr[2]=readertype.getSelectedItem().toString();
readerstr[3]=readersex.getSelectedItem().toString();
for(int i=0;i
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦