This repository contains client-server applications exercises from my university exams. Each exam folder includes the Java source code for the client, a compiled JAR server, and a PDF with exam instructions.
- Install Java
- (Optional) Use Eclipse to open the projects.
Clone the repository:
git clone https://github.com/chitvs/pds.git
cd pds- Navigate to an exam directory:
cd src/<year>/<month>/
- Compile the source files:
javac -d bin *.java - Run the client and server:
java -cp bin ClientMain & java -jar server.jar