I have a Java Applet to show images. I have a while true loop in paint() in order to permantly receive new images via tcp/ip socket. Now I have the problem, that the app is still requesting new Images from the server, even when the tab is closed. How can I fix that?
|
|
Just to make it clear:
Don't do this. The paint method should never block for a longer time frame. It should only paint your images, nothing else. (As long as the paint method is running, nothing else in your GUI can do anything. This may not be critical for your applet, but it will be for more complicated programs.) If you need to load new images, do this in a separate thread, put the image in a variable, and call |
|||
|
|
and add Now, check the loaded variable's value before executing your code in your applet. |
|||
|
|
|
Override Applet.destroy().
|
|||||
|

