You are viewing a single comment's thread from:

RE: Java Tutorial : How To Create Connection With Socket Programming On NetBeans

in #utopian-io6 years ago

Dude, you should do it with Thread. One Thread for each incoming client. Build a class, that extends java.lang.Thread.
You will get a much cleaner code and the handlling of the clients is much easier.
Also, endless loops are never good. Make an escape point to the loop, e. g. buy pressing a key on the server console.