The QR Code-based Smart Vehicle Parking Management System is a cutting-edge solution designed to revolutionize how parking is managed in urban environments. Built using Java and MySQL, the system leverages QR code technology to offer a seamless, secure, and efficient approach to parking, enhancing user convenience and optimizing space utilization.
- ✅ Vehicle entry/exit management using QR code
- ✅ Real-time slot availability tracking
- ✅ Dynamic parking slot allocation
- ✅ QR code generation and scanning
- ✅ Secure data storage using MySQL
- ✅ Admin dashboard for system control
- ✅ Time-based billing (optional/if implemented)
- Java (Swing / JavaFX / Servlets - specify if used)
- MySQL for database management
- JDBC for database connectivity
- ZXing Library for QR code generation & scanning
git clone https://github.com/your-username/QR-Code-based-Smart-Vehicle-Parking.git
cd QR-Code-based-Smart-Vehicle-ParkingCREATE DATABASE vehicle_parking_system;Update your MySQL connection credentials in the code (typically in a class like DBConnection.java):
String url = "jdbc:mysql://localhost:3306/vehicle_parking_system";
String username = "root";
String password = "your_password";Open a terminal in the project directory and run:
javac *.java java ScanTicket