This repository contains a very simple client-server application, also known as a Vanilla Socket Program, implemented in Java. The application demonstrates basic socket programming concepts in Java, enabling communication between a client and a server.
- Simple Communication: Establishes a basic connection between a client and a server.
- Message Exchange: Allows sending and receiving messages between the client and the server.
- Java Sockets: Utilizes Java's
Socket
andServerSocket
classes for network communication.
- Java Development Kit (JDK): Ensure JDK is installed on your system.
- Server.java: Contains the server-side implementation.
- Client.java: Contains the client-side implementation.
Contributions are welcome! Feel free to fork the repository, make improvements, and submit a pull request.
Enjoy using this simple client-server application built with Java!