Very new to Java. My guess is it should be new Socket ("nothing",8)?
public static void test(String s[]) {
try {
echoSocket = new Socket("nothing", 7);
out = new PrintWriter(echoSocket.getOutputStream(), true);
in = new BufferedReader( new InputStreamReader(echoSocket.getInputStream()));
} catch (UnknownHostException e) {
System.err.println("Don't know about host: .");
return;
}
process(out, in, echoSocket);
out.close();
in.close();
echoSocket.close();
}
StackTraceis so much helpful. Else it will only take more time. – Rohit Jain Nov 15 '12 at 16:31