posted 16 years ago
I have solved my problem...
Here say me about the cache in the browsers, Is necessary to use class URLConnection, there is method setDefaultUseCaches(false or true), when I open the URL of image, I disabled the cache, some like this:
URLConnection urlconnection;
Image smn_img;
urlConnection=imageURL.openConnection();
urlConnection.setDefaultUseCaches(false);
smn_img=ImageIO.read(imageURL);
Then, the refresh in the applet work fine.
thanks for your comments.