Skip to content

Latest commit

 

History

History

example-01-tcp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

SE325 Example 01 - TCP

This project contains a simple example of how to setup a simple TCP client and server using Java.

The Client class demonstrates how to use a Socket to establish a TCP connection to a server. Once established, communication via TCP sockets is full-duplex (i.e. two-way). This is done via InputStream and OutputStream subclasses.

The Server class demonstrates how to use a ServerSocket to listen for client connections. Once established, a Socket instance will be obtained which can be used to communicate with an individual client. The ServerSocket may continue listening for additional clients on another thread.