Question: Write a java program to create a class named TCPServer to do the following steps: Create a server socket to listen and accept client connection
Write a java program to create a class named TCPServer to do the following steps:
Create a server socket to listen and accept client connection requests. Create an InputStream, and BufferedReader, to read messages from the client.
Create an OutputStream, and PrintWriter, to send replies to the client. Read from the InputStream. Write to the OutputStream. Close the InputStream, the OutputStream, and the socket before the server exits.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
