To run the application on the server side, enter the following on the command line:
$ java -jar DictionaryServer.jar <port> <dictionary-file>
here, is the port number where the server will listen for incoming client connections, and is the path to the file containing the dictionary data.
To run the application on the client side, enter the following on the command line (in a new tab):
$ java -jar DictionaryClient.jar <server-IP-address> <server-port>
here, is the IP address of the server, and is the port number where the server will listen for incoming client connections.