This is a simple Library Management System created as a group project for the MIVA Open University COS 202 course. The application is built using Java and provides basic functionalities for managing books and library members.
- Add, edit, and delete books from the library.
- Register, update, and remove library members.
- Borrow and return books.
- View lists of available books and registered members.
To get a copy of this project on your local machine, you can clone it from GitHub.
-
Prerequisites:
- Git installed on your system.
-
Steps:
- Open a terminal or command prompt.
- Navigate to the directory where you want to store the project.
- Run the following command:
git clone <repository-url>
- Replace
<repository-url>with the actual URL of the GitHub repository.
This project can be set up and run on various IDEs that support Java development. Below are the instructions for some popular IDEs.
-
Prerequisites:
- Java Development Kit (JDK) (version 11 or higher)
- Visual Studio Code
- Extension Pack for Java for Visual Studio Code
-
Steps:
- Clone the repository or download the source code.
- Open the project folder in Visual Studio Code.
- The Java extension should automatically recognize the project.
- Locate the
Main.javafile in thesrcfolder, right-click, and selectRun Java.
-
Prerequisites:
- Java Development Kit (JDK) (version 11 or higher)
- IntelliJ IDEA (Community or Ultimate Edition)
-
Steps:
- Clone the repository or download the source code.
- Open IntelliJ IDEA and select
File > Open.... - Navigate to the project's root folder and select it.
- IntelliJ IDEA will automatically detect the project structure.
- Locate the
Main.javafile in thesrcfolder, right-click, and selectRun 'Main.main()'.
The general steps for other IDEs are similar:
-
Prerequisites:
- Java Development Kit (JDK) (version 11 or higher)
- Your preferred Java IDE (e.g., Eclipse, NetBeans)
-
Steps:
- Clone the repository or download the source code.
- Open your IDE and import the project.
- In Eclipse, you can use
File > Import > General > Existing Projects into Workspace. - In NetBeans, you can use
File > Open Project.
- In Eclipse, you can use
- Set up the project's JDK if required.
- Locate the
Main.javafile and run it as a Java application.