How to avoid image loading every time an applet is being loaded?
Hi, i'm developing an appled that make extensive usage of graphics and Images.
It seems that clients download the images (almost 5 mb in total) every time the applet is loaded.
i would like a behaviour very similar to flash.. "if u have it, u dont need to download it again".. it is possible?
Going deeper into the problem:
this.getImage(this.getCodeBase(), sName);
to load the requested image during the applet execution, so loading may
happen also outside the constructor
the ideal solution whould be something like that
Image hRequested = this.findFromCookies(sName);
if(hRequested ==null)
//load with the standard method..

