Write a Java TCP MultipleClient-Server Program for following scenario. NOTE Server Details are in the above figure Client-Server communicates continuously until the Client send Bye to the Server Use Multithreading for Multiple Clients NOTE : 1 cm = 0.39 inches 1 cm = 0.03 foot 1 cm = 0.01 meter Sample Ouput: Client Server 1 – cm to inches 2 – cm to foot 3 – cm to meter Enter length in cms (int) : 10 Received from Server 3.9 inches 1 – cm to inches 2 – cm to foot 3 – cm to meter Enter length in cms (int) : BYE Received from Server BYE Client DISCONNECTED Server Waiting for the Cline to be Connected… CONECTION ESTABLISHED Received From Client 10 cms Sent to Client 3.9 inches Received From Client BYE Sent to Client BYE HINT : When client choses 1 for cm to inches and enter 10, then the client sends the string 110 to the Server. Where the first char ‘1’ represents the cm to inches and the other 2 chars represents the 10.
Write a Java TCP MultipleClient-Server
NOTE Server Details are in the above figure
- Client-Server communicates continuously until the Client send Bye to the Server
- Use Multithreading for Multiple Clients
NOTE :
1 cm = 0.39 inches
1 cm = 0.03 foot
1 cm = 0.01 meter
Sample Ouput:
Client |
Server |
1 – cm to inches 2 – cm to foot 3 – cm to meter Enter length in cms (int) : 10 Received from Server 3.9 inches
1 – cm to inches 2 – cm to foot 3 – cm to meter Enter length in cms (int) : BYE Received from Server BYE
Client DISCONNECTED |
Server Waiting for the Cline to be Connected… CONECTION ESTABLISHED
Received From Client 10 cms Sent to Client 3.9 inches
Received From Client BYE Sent to Client BYE |
HINT : When client choses 1 for cm to inches and enter 10, then the client sends the string 110 to the Server. Where the first char ‘1’ represents the cm to inches and the other 2 chars represents the 10.
Step by step
Solved in 2 steps