Online-Library is a simple Java program that simulates basic library operations and demonstrates core Java and OOP concepts.
- Add new books to the library
- Display available books and issued books
- Borrow (issue) and return books
- Basic command-line interface with input validation
- Java (Core Java)
- Object-Oriented Programming (OOP)
- Ensure Java is installed:
java -version
- Compile the program from the
Online-Library-1
directory:
javac main.java
- Run the program (package
com.company
, classtuts
):
java com.company.tuts
Welcome to this Library !!
Please Enter 1 to Display the Available Books
Please press 2 to Issue A Book
Press 3 to Add A book
Press 4 to return a Issued Book
Press 5 to Exit
- Practice Java syntax and OOP concepts
- Simulate a small real-world application
- Build a foundation for more complex Java projects
This project is open-source and free to use. Add a license as needed (e.g., MIT, Apache-2.0).
Thanks to various Java tutorials and documentation that helped shape this project.