// File: ex4_client.java (Module 13) // // Author: Rahul Simha // Created: Nov 28, 1998 // // Template for Ex 13.4: a client that writes a byte. import java.io.*; import java.net.*; public class ex4_client { public static void main (String[] argv) { if ( (argv == null) || (argv.length == 0) ) { System.out.println ("Usage: enter 1 or 2 as parameter"); System.exit(0); } try { // INSERT YOUR CODE HERE. } catch (IOException e) { System.out.println (e); } } }