Multi-Threading in Java – Client Server Application Example
|

Multi-Threading in Java – Client Server Application Example

Multithreading in java? Multithreading in java is a process of executing multiple threads simultaneously. A thread is a lightweight sub-process, the smallest unit of processing. Multiprocessing and multithreading, both are used to achieve multitasking. … Java Multithreading is mostly used in games, animation, etc Every modern operating system has the support for multi-threading–so does the…

Java TCP Client Server Chat Application using Sockets
| |

Java TCP Client Server Chat Application using Sockets

This is a very simple Client/Server Chat Application using TCP Sockets Java. Complete Code for Client & Server can be found below for download. How it Works Here is an example of how a very simple client-server chat application works. These are the stages involved: Step 1:  In any Client/Server Application, we need to run the…