0
7.4kviews
Write a Program for Client Server Application using Socket Programming
1 Answer
| written 9.4 years ago by |
TCP/IP Socket Programming:
The two key classes from the java.net package used in creation of server and client programs are: a. ServerSocket. b. Socket.
A server program creates a specific type of socket that is used to listen for client requests (server socket).
In the case of a connection request, …