Hi everyone. I need your help in clarifying some of my doubts, hope you can help me out.
I've created a java program which download images from the server. After the download is complete, the program will create another UI displaying the downloaded images.
I'm able to repeat the downloading process, each time downloading different images.
The images is displayed correctly on the first attempt. However, on the subsequent download, the image displayed on the UI wasn't refreshed although the image in the system has changed.
My question is :
1) Can I set/refresh the same ImageIcon which I've created/used earlier?
e.g
Label[1].setIcon(MovieImage[1]);
Thanks in advance