I'm making a simple network using socket ..
It works fine but the problem is it's working like a board game :S
Every time the server has to wait for the client then the client will wait for the server and so on ...
I want the data to be sent from server to client and from client to server whenever I enter data from any side.
Here is a part of my code in server
in = Integer.parseInt(myInputStream.readLine())); // server gets data
out = new Scanner(System.in).nextInt();
myOutputStream.println(column); // server sends data
acceptorreceive) will block and wait for an incoming connection (if ServerSocket) or an incoming datagram (if DatagramSocket). So in that case "waiting" is okay with me. (download.oracle.com/javase/tutorial/networking/sockets/…) – nyyrikki Jun 9 '11 at 13:00