X-Git-Url: https://git.piment-noir.org/?p=TD_SR.git;a=blobdiff_plain;f=TD2%2Fclient%2FMain.java;fp=TD2%2FMain.java;h=cc47bb7bd499c54bf3822ccc7fbaea975795df27;hp=e7bd9638d3ce91f39700834fe09ee9679c407839;hb=58312685472236da9be0138c9b5b450ca13387b1;hpb=2c648f756e35448bf69e8a09670219bfc4b2fd52 diff --git a/TD2/Main.java b/TD2/client/Main.java similarity index 56% rename from TD2/Main.java rename to TD2/client/Main.java index e7bd963..cc47bb7 100644 --- a/TD2/Main.java +++ b/TD2/client/Main.java @@ -3,11 +3,14 @@ import java.io.*; public class Main { + /** + * Main for testing ClientSimplifie + */ private static void main1() { SocketClient client = new SocketClient(); try { - client.sendMsg("Line 1 Line 2"); + client.sendMsg("Line1"); String msg = client.receiveMsg(); System.out.println(msg); } @@ -21,24 +24,28 @@ public class Main { public static void main (String[] args) { + SocketClient client = new SocketClient(); - try { - SocketClient client = new SocketClient(); + // try { ThreadClientSend thCS = new ThreadClientSend(client); - thCS.setMsg("Line1 Line2"); + //FIXME: Implement a loop based on user input to set dynamically the message to sent. + //for (int i = 0; i < 10; i++) { + // thCS.setMsg("Line" + i); + //} + thCS.setMsg("Line1"); Thread thS = new Thread(thCS); Thread thR = new Thread(new ThreadClientReceive(client)); thS.setName("thS"); thS.start(); thR.setName("thR"); thR.start(); - } - catch (Exception e) { - System.err.println("Exception: " + e); - } - finally { - client.closeRWIO(); - } + // } + // catch (Exception e) { + // System.err.println("Exception: " + e); + // } + // finally { + // client.closeRWIO(); + // } }