All I want to do is start a thread to listen for communication on a certain port.
I start this by having an 'ok' button on a jDialog. When 'ok' has been clicked, the jDialog should hide itself (HostClientDialog.setVisible(false);), which works when the thread start line isn't in there.
try {
HostClientDialog.setVisible(false);
// start a thread that listens for incoming messages
new gameCycle().start();
} catch (Exception e) { }
The new gameCycle().start(); line is calling the following code:
public class gameCycle extends Thread {
//public gameCycle(){
// super();
//}
@Override
public void run() {
try {
ServerSocket connection = new ServerSocket(4242);
// Wait for connection
Socket s = connection.accept();
// Socket input
BufferedReader in = new BufferedReader(new
InputStreamReader(s.getInputStream()));
// for receiving moves
while (true) {
String message = "";
message = in.readLine();
if (message != null && !message.equals("")) {
// do something with message
}
sleep(100);
} // end while
} catch (Exception e) { }
} // end run
} // end class
I understood the above code to be looping until a message is received, and then doing something with the message. But when you execute this code, the jDialog box is made again (instantly) and re-prompts the user to click ok. It won't let the user get past the jDialog box, it will just continually re-prompt them.
I'm fairly novice with threads (I haven't done much more than printing using multiple threads), so I feel like I might be me implementing it incorrectly. But I've looked around for examples, and they seem to be more or less what I have.
EDIT (11/29/2010 at 1:30 AM EST)
It seems that I don't quite have the idea of TCP communication down as well as I thought. My goal with the thread and subsequent while loop was as follows:
- In the background the program would be waiting for any messages sent its way
- If it it received a message it would update something on the GUI, and then go back to waiting for more messages
All the while allowing the user to be continually using the GUI.