目录
图书借阅管理项目简介
图书管理主要用于对图书馆书籍信息的管理,主要分为以下五个模块:
*,查询模块:该模块主要用于查询现存图书馆中所有书籍的信息,包括书籍名称,作者,出版社,借阅次数
重点:"select * from 图书";
"select * from 图书 order by num desc"
**,查询借阅情况模块:该模块用于用户查询图书的借阅情况,因为借阅情况显示出书内容吸引人的程度,所以特设此模块给借阅者提供借阅参考依据
重点:
"select num from 图书 where name='"+q+"'"
***,借书模块:借阅者借书之后系统会给出借阅信息,并在原有的借阅次数上加1,以便后续借阅者查询参考使用
重点:"select num from 图书 where name='"+m+"'"
"update 图书 set num=? where name=?"
"select num from 图书 where name='"+m+"'"
****,还书模块:还书者需要录入所还书籍的所有信息,系统自动判断所还书籍是否已经存在若存在则告诉还书者还书成功,除此之外不做任何操作,若不存在该书籍信息则将该书籍信息增加到图书表中,实时更新表中信息
重点:"select * from 图书 where name=?"
"insert into 图书 (name,no,author,publisher) values(?,?,?,?)"
******,退出,若借阅者不再进行借还操作则退出系统
项目框架
图书表信息
代码展示
主界面
package tushu.com;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Scanner;import com.mysql.jdbc.PreparedStatement;
public class TS {
static String name;
static String no;
static String author;
static String publisher;
static int num;
public static void main(String[] args) {
// TODO Auto-generated method stub
Connection con;
String driver="com.mysql.jdbc.Driver";//加载连接数据库所需要的驱动程序
String url="jdbc:mysql://localhost:3306/图书馆";//指定所要连接数据库
String user="root";//指定连接数据库的用户
String password="root";//指定连接数据库的密码
try {
Class.forName(driver);//加载连接数据库需要的驱动
try {
con=DriverManager.getConnection(url, user, password);//连接数据库
System.out.println("---------------图书馆借阅查询系统---------------");
System.out.println("请输入所要进行的业务的代码:\n"+"1,总览图书"+"\t"+"2,借阅情况\n"+"3,借书\t"+"4,还书\n"+"0,退出");
System.out.println("------------------------------------------");
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
while(a!=0)
{
查询图书种类
if(a==1)
{
if(!con.isClosed())
{
con=DriverManager.getConnection(url, user, password);连接数据库
Statement statement=con.createStatement();
String sql="select * from 图书";//查询数据表中的所有数据
ResultSet rs=statement.executeQuery(sql);//执行sql语句
if(!rs.next())
{
System.out.println("暂无图书");
a=sc.nextInt();
break;
}
else
{
String sql1="select * from 图书 order by num desc";//按照图书借阅情况的多少进行降序排序
ResultSet rs1=statement.executeQuery(sql1);
while(rs1.next())
{
name=rs1.getString("name");
no=rs1.getString("no");
author=rs1.getString("author");
publisher=rs1.getString("publisher");
num=rs1.getInt("num");
System.out.println(name+" "+no+" "+author+" "+publisher+" "+num);
}
}
}
a=sc.nextInt();
}
查询图书借阅情况
if(a==2)
{
System.out.println("请输入所要查询书名");
String q=sc.next();
con=DriverManager.getConnection(url, user, password);//连接数据库
Statement statement=con.createStatement();//创建statement对象执行sql语句
String sql=new String("select num from 图书 where name='"+q+"'");//显示查询图书的借阅次数
ResultSet rs=statement.executeQuery(sql);//执行sql语句
while(rs.next())
{
num=rs.getInt("num");
System.out.println("该书共借了"+num+"次");
}
a=sc.nextInt();
}
借书
if(a==3)
{
System.out.println("请输入所要借的书名:");
String m=sc.next();
Statement statement=con.createStatement();
String sql="select num from 图书 where name='"+m+"'";//显示查询图书的借阅次数
ResultSet rs=statement.executeQuery(sql);
while(rs.next())
{
num=rs.getInt("num");
}
int k=num+1;
java.sql.PreparedStatement ps;
ps=con.prepareStatement("update 图书 set num=? where name=?");//更新图书表信息
ps.setInt(1, k);//给sql语句里的第一个形参传值
ps.setString(2, m);//给sql语句里的第二个形参传值
ps.executeUpdate();//更新数据表
String sql1="select num from 图书 where name='"+m+"'";//显示查询图书的借阅次数
ResultSet rs1=statement.executeQuery(sql);
while(rs1.last())
{
System.out.println("该书已借"+rs1.getInt("num")+"次");
break;
}
a=sc.nextInt();
}
还书
if(a==4)
{
Statement statement=con.createStatement();
System.out.println("请输入所要还的书名:");
String m=sc.next();
System.out.println("请输入所还书的编号:");
String n=sc.next();
System.out.println("请输入所还书的作者");
String l=sc.next();
System.out.println("请输入所还书出版社");
String p=sc.next();
java.sql.PreparedStatement ps;
int mm=0;
ResultSet rs=null;
String sql="select * from 图书 where name=?";//查询还书在数据表里的信息
ps=con.prepareStatement(sql);//执行sql语句
ps.setString(1, m);//给sql语句的第一个形参传参
rs=ps.executeQuery();//不管有无结果集,rs都不为空
while(rs.next())
{
mm=1;
break;
}
if(mm==1)
{
System.out.println("还书成功");
}
else
{
ps=con.prepareStatement("insert into 图书 (name,no,author,publisher) values(?,?,?,?)");
ps.setString(1, m);
ps.setString(2, n);
ps.setString(3, l);
ps.setString(4, p);
System.out.println("还书成功");
ps.executeUpdate();
}
a=sc.nextInt();
}
}
}catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}