Java 实现图书管理系统

需求

编写图书借阅程序,可以处理简单的书籍借阅情况,包括借书和还书等。图书类的数据成员包括书名、书号和借书学生等;方法包括借书、还书和显示书籍信息等。学生类的数据成员包括姓名、学号和所借书籍等;方法包括显示学生信息等。将数据保存在数据库中或文件中,采用图形化用户界面,实现图书的入库,借阅和归还。

代码

/***说明书籍信息采用空格隔开,请勿在书名、书号之中添加空格**运行代码首先会在当前目录下检测是否存在books的文件,如果不存在,就创建一个,用来保存书籍信息;students 文件同理所有的操作都是在内存中完成,只有关闭窗口时会将内存写回文件*/import java.util.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.lang.*;class Book{private String name;private String no;private String student_no;public void setName(String _name){this.name = _name;}public void setNo(String _no){this.no = _no;}public void setStudent_no(String _student_no){this.student_no = _student_no;}public String getName(){return this.name;}public String getNo(){return this.no;}public String getStudent_no(){return this.student_no;}public void Borrow(){}public void Return(){}
}class Student{private String name;private String no;private String books_no;public void setName(String _name){this.name = _name;}public void setNo(String _no){this.no = _no;}public void setBooks_no(String _books_no){this.books_no = _books_no;}public void Show(){System.out.println("Student[name= " + this.name + " Student_no= " + this.no + " books=" + this.books_no + "]");}
}class frame extends JFrame{//按钮private JButton borrow = new JButton("借书");private JButton back = new JButton("还书");private JButton append = new JButton("添加书籍");private JButton query = new JButton("借阅查询");private JButton list = new JButton("书籍查询");private ArrayList<Book> books = new ArrayList<>();private ArrayList<Student> students = new ArrayList<>();//Jpanelprivate JPanel options = new JPanel();public frame(){//读取文件//书籍File booksfile = new File("./books");if(!booksfile.exists()){try{booksfile.createNewFile();} catch (Exception e){System.out.println("书籍文件创建失败哦~");}}//学生File studentsfile = new File("./students");if(!studentsfile.exists()){try{studentsfile.createNewFile();} catch (Exception e){System.out.println("学生文件创建失败哦~");}}//将书籍信息加载到内存try {BufferedReader reader = new BufferedReader(new FileReader("./books"));String line;while ((line = reader.readLine()) != null) {String[] info = line.split(" ");Book book = new Book();book.setName(info[0]);book.setNo(info[1]);try{book.setStudent_no(info[2]);} catch (Exception e) {System.out.println(e);}books.add(book);System.out.println(line);}reader.close();} catch (IOException e) {e.printStackTrace();}//将学生信息加载到内存try {BufferedReader reader = new BufferedReader(new FileReader("./students"));String line;while ((line = reader.readLine()) != null) {String[] info = line.split(" ");Student student = new Student();student.setName(info[0]);student.setNo(info[1]);try{student.setBooks_no(info[2]);} catch(Exception e){System.out.println(e);}students.add(student);System.out.println(line);}reader.close();} catch (IOException e) {e.printStackTrace();}//获取窗口大小Toolkit kit = Toolkit.getDefaultToolkit();Dimension screenSize = kit.getScreenSize();int screenw = screenSize.width;//屏幕的宽int screenh = screenSize.height;//屏幕的高//设置屏幕的宽和高int windowsWedth = 800;int windowsHeight = 450;//设置剧中//坐标xint x = (screenw - windowsWedth)/2;//坐标yint y = (screenh -  windowsHeight)/2;//Jpanel添加按钮options.add(borrow);options.add(back);options.add(append);options.add(query);options.add(list);//绑定借书功能borrow.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){String book_name = JOptionPane.showInputDialog("请输入书名:");if(book_name == null){return ;}boolean find = false;Book book = new Book();for(Book tmp : books){if(tmp.getName().equals(book_name)){find = true;book = tmp;break;}}if(find){if(book.getStudent_no() == null){String student_no = JOptionPane.showInputDialog("请输入你的学号:");book.setStudent_no(student_no);JOptionPane.showMessageDialog(null, "借阅成功!");}else{JOptionPane.showMessageDialog(null, "书籍已经被" + book.getStudent_no() + "借走了嗷~");}}else{JOptionPane.showMessageDialog(null, "未发现书籍");}}});//还书back.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){String student_no = JOptionPane.showInputDialog("请输入学号: ");if(student_no == null){return ;}ArrayList<Book> borrowed_books = new ArrayList<>();boolean find = false;for(Book book : books){if(book.getStudent_no() != null){if(book.getStudent_no().equals(student_no)){find = true;borrowed_books.add(book);}}}if(!find){JOptionPane.showMessageDialog(null, "未找到记录");}else{JPanel list = new JPanel();JButton sure_back = new JButton("确认归还");JCheckBox[] checkBoxs = new JCheckBox[borrowed_books.size()];for(int i=0; i<borrowed_books.size(); i++){checkBoxs[i] = new JCheckBox(borrowed_books.get(i).getName());list.add(checkBoxs[i]);}JFrame listBooks = new JFrame("还书");//确认归还sure_back.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){boolean find = false;for(int i=0; i<borrowed_books.size(); i++){if(checkBoxs[i].isSelected()){find = true;for(Book tmp : books){if(tmp.getNo().equals(borrowed_books.get(i).getNo())){tmp.setStudent_no(null);}}}}if(find){JOptionPane.showMessageDialog(null,"还书完成");listBooks.dispose();}else{JOptionPane.showMessageDialog(null,"请选择要归还的图书");}}});//JFrame listBooks = new JFrame("还书");listBooks.add(list);listBooks.add(sure_back,BorderLayout.SOUTH);listBooks.setVisible(true);listBooks.setBounds(x+200,y+50,300,400);//JOptionPane.showMessageDialog(null, info);}}});//添加书籍append.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){String book_name = JOptionPane.showInputDialog("请输入书名:");if(book_name != null){if(book_name.equals("")){JOptionPane.showMessageDialog(null, "请输入书名!");return ;}else{String book_no = JOptionPane.showInputDialog("请输入书ID: ");if(book_no != null){if(book_no.equals("")){JOptionPane.showMessageDialog(null, "请输入书ID!");return ;}Book book = new Book();book.setNo(book_no);book.setName(book_name);books.add(book);JOptionPane.showMessageDialog(null, "添加成功");}}} }});//借阅查询query.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){String student_no = JOptionPane.showInputDialog("请输入学号: ");String info = "<html>";boolean find = false;for(Book book : books){if(book.getStudent_no() != null){if(book.getStudent_no().equals(student_no)){find = true;info += book.getName() + " " + book.getNo() + "<br>";}}}if(!find){JOptionPane.showMessageDialog(null, "未找到记录");}else{JOptionPane.showMessageDialog(null, info);}}});//展示书籍list.addActionListener(new ActionListener(){public void actionPerformed(ActionEvent e){String info = "<html>";boolean find = false;for(Book book : books){find = true;info += book.getName() + " " + book.getNo() + "<br>";}if(!find){JOptionPane.showMessageDialog(null, "未找到记录");}else{JOptionPane.showMessageDialog(null, info);}}});// 程序关闭时将内存写回文件Thread shutdownHook = new Thread() {@Overridepublic void run() {try{FileWriter fw = new FileWriter("./books");for(Book book : books){fw.write(book.getName() + " " + book.getNo());if(book.getStudent_no() != null){fw.write(" " + book.getStudent_no() + "\n");}else{fw.write("\n");}}fw.close();} catch (Exception e) {System.out.println(e);}}};// 注册关闭钩子Runtime.getRuntime().addShutdownHook(shutdownHook);//整活String makelive="<html><body><h2>CSDN关注</h2><a href='qwe' >嗯嗯你说的对</a></body></html>";Font font = new Font("宋体",Font.PLAIN,20);JLabel makeLive = new JLabel(makelive);makeLive.addMouseListener(new MouseAdapter() {@Overridepublic void mouseClicked(MouseEvent e) {try {Desktop.getDesktop().browse(new java.net.URI("https://blog.csdn.net/weixin_61133168?type=blog"));} catch (Exception ex) {ex.printStackTrace();}}});makeLive.setFont(font);makeLive.setForeground(Color.RED);makeLive.setHorizontalAlignment(SwingConstants.CENTER);//基础设置this.setTitle("图书管理");//this.add(editorPane,BorderLayout.CENTER);this.add(makeLive,BorderLayout.CENTER);this.add(options,BorderLayout.SOUTH);this.setVisible(true);this.setBounds(x,y,windowsWedth,windowsHeight);this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);}}public class Main4{public static void main(String [] args){Scanner in = new Scanner(System.in);new frame();in.close();}
}

代码分析

  • 采用文件形式来保存信息,每次运行时加载到内存
  • 程序终止时将内存中的信息保存到文件

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/147818.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【开源】基于Vue.js的高校实验室管理系统的设计和实现

项目编号&#xff1a; S 015 &#xff0c;文末获取源码。 \color{red}{项目编号&#xff1a;S015&#xff0c;文末获取源码。} 项目编号&#xff1a;S015&#xff0c;文末获取源码。 目录 一、摘要1.1 项目介绍1.2 项目录屏 二、研究内容2.1 实验室类型模块2.2 实验室模块2.3 实…

数据结构与集合源码

我是南城余&#xff01;阿里云开发者平台专家博士证书获得者&#xff01; 欢迎关注我的博客&#xff01;一同成长&#xff01; 一名从事运维开发的worker&#xff0c;记录分享学习。 专注于AI&#xff0c;运维开发&#xff0c;windows Linux 系统领域的分享&#xff01; 本…

【数据结构与算法】线性表 - 顺序表

目录 1. 线性表2.顺序表3.顺序表的优缺点4.实现&#xff08;C语言&#xff09;4.1 头文件 seqList.h4.2 实现 seqList.c 1. 线性表 线性表&#xff08;linear list&#xff09;是n个具有相同特性的数据元素的有限序列。 线性表是一种在实际中广泛使用的数据结构&#xff0c;常见…

音视频转换软件Permute mac中文板特点介绍

Permute mac是一款Mac平台上的媒体格式转换软件&#xff0c;由Chaotic Software开发。它可以帮助用户快速地将各种音频、视频和图像文件转换成所需格式&#xff0c;并提供了一些常用工具以便于用户进行编辑和处理。 Permute mac软件特点 - 支持大量格式&#xff1a;支持几乎所…

最长公共子序列问题

构造最长公共子序列为什么要这样构造序列 for(int i1;i<n;i){int k;cin>>k;b[k]i;}for(int i1;i<n;i){int k;cin>>k;a[i]b[k];}并且为什么要求上升序列&#xff0c;是有什么数学知识包含在其中吗&#xff1f; 为什么在求最长公共子序列时&#xff0c;f[mid]大…

适用于中大型C++工程的CMake模板1

在C项目开发中&#xff0c;CMake是一种广泛使用的构建工具&#xff0c;它可以帮助我们管理和构建中大型项目。下面是一个适用于中大型C工程的CMake模板。 项目结构 首先&#xff0c;我们需要定义一个清晰的项目结构。一个典型的中大型C项目可能包括以下目录和文件&#xff1a…

汇编-指针

一个变量如果包含的是另一个变量的地址&#xff0c; 则该变量就称为指针(pointer) 。指针是操作数组和数据结构的极好工具&#xff0c;因为它包含的地址在运行时是可以修改的。 .data arrayB byte 10h, 20h, 30h, 40h ptrB dword arrayB ptrB1 dword OFFSET arrayBarray…

C语言绘图

C语言本身并没有内置的绘图库。但是&#xff0c;你可以使用外部库来进行绘图&#xff0c;比如SDL&#xff0c;OpenGL&#xff0c;或者Windows的GDI库。下面我将简单地解释一下如何使用SDL库进行绘图。 首先&#xff0c;你需要在你的计算机上安装SDL库。然后&#xff0c;你可以…

TS的内置对象

内置对象 let b: Boolean new Boolean(1)console.log(b)let n: Number new Number(true)console.log(n)let s: String new String(cqs)console.log(s)let d: Date new Date()console.log(d)let r: RegExp /^1/console.log(r)let e: Error new Error("error!")…

Linux:权限篇 (彻底理清权限逻辑!)

shell命令以及运行原理&#xff1a; Linux严格意义上说的是一个操作系统&#xff0c;我们称之为“核心&#xff08;kernel&#xff09;“ &#xff0c;但我们一般用户&#xff0c;不能直接使用kernel。而是通过kernel的“外壳”程序&#xff0c;也就是所谓的shell&#xff0c;来…

YOLOV5部署Android Studio安卓平台NCNN

坑非常多&#xff0c;兄弟们&#xff0c;我已经踩了三天的坑了&#xff0c;我这里部署了官方的yolov5s和我自己训练的yolov5n的模型 下载Android Studio&#xff0c;配置安卓开发环境&#xff0c;这个过程比较漫长。 安装cmake&#xff0c;注意安装的是cmake3.10版本。 根据手机…

LeetCode——字符串(Java)

字符串 简介[简单] 344. 反转字符串[简单] 541. 反转字符串 II[中等] 151. 反转字符串中的单词 简介 记录一下自己刷题的历程以及代码。写题过程中参考了 代码随想录。会附上一些个人的思路&#xff0c;如果有错误&#xff0c;可以在评论区提醒一下。 [简单] 344. 反转字符串…

【IPC】消息队列

1、IPC对象 除了最原始的进程间通信方式信号、无名管道和有名管道外&#xff0c;还有三种进程间通信方式&#xff0c;这 三种方式称之为IPC对象 IPC对象分类&#xff1a;消息队列、共享内存、信号量(信号灯集) IPC对象也是在内核空间开辟区域&#xff0c;每一种IPC对象创建好…

15分钟,不,用模板做数据可视化只需5分钟

测试显示&#xff0c;一个对奥威BI软件不太熟悉的人来开发数据可视化报表&#xff0c;要15分钟&#xff0c;而当这个人去套用数据可视化模板做报表&#xff0c;只需5分钟&#xff01; 数据可视化模板是奥威BI上的一个特色功能板块。用户下载后更新数据源&#xff0c;立即就能获…

windows安装wsl2以及ubuntu

查看自己系统的版本 必须运行 Windows 10 版本 2004 及更高版本&#xff08;内部版本 19041 及更高版本&#xff09;或 Windows 11 才能使用以下命令 在设置&#xff0c;系统里面就能看到 开启windows功能 直接winQ搜 开启hyber-V、使用于Linux的Windows子系统、虚拟机平…

群晖7.2版本安装CloudDriver2(套件)挂载alist(xiaoya)到本地

CloudDrive是一个强大的多云盘管理工具&#xff0c;为用户提供包含云盘本地挂载的一站式的多云盘解决方案。挂载到本地后&#xff0c;可以像本地文件一样进行操作。 一、套件库添加矿神源 二、安装CloudDriver2 1、搜索安装 搜索框输入【clouddrive】&#xff0c;搜索到Clou…

拍照小白入坑

快门 M(上半圆)&#xff1a;通过控制快门打开时间控制感光量&#xff0c;高速可以定格时间&#xff0c;低速可以记录移动轨迹 清晰度&#xff0c;速度不够快&#xff0c;图片不清晰。拍景拍物1/100s&#xff0c;拍嬉戏的孩子、笑容1/500s&#xff0c;快速移动的鸟、汽车1/2000…

获取文章分类详情

CategoryController GetMapping("/detail")public Result<Category> detail(Integer id){Category c categoryService.findById(id);return Result.success(c);} CategoryService //根据id查询分类信息Category findById(Integer id); CategoryServiceImpl …

山西电力市场日前价格预测【2023-11-20】

日前价格预测 预测说明&#xff1a; 如上图所示&#xff0c;预测明日&#xff08;2023-11-20&#xff09;山西电力市场全天平均日前电价为255.39元/MWh。其中&#xff0c;最高日前电价为436.50元/MWh&#xff0c;预计出现在18:00。最低日前电价为21.61元/MWh&#xff0c;预计出…

【hive遇到的坑】—使用 is null / is not null 对string类型字段进行null值过滤无效

项目场景&#xff1a; 查看测试表test_1&#xff0c;发现表字段classes里面有null值&#xff0c;过滤null值。 --查看 > select * from test_1; ----------------------------- | test_1.id | test_1.classes | ----------------------------- | Mary | class 1 …