ingrid.yao@Eng 1997-11-06
Images in a JAR file are no longer used by JDK, causing unneccassary network
round trips, because a vital line of code in sun.applet.AppletResourceLoader
has been commented out by Javasoft!!! This line is still commented out in
1.1.5D.
The line in question is line 215 in 1.1.5D AppletResourceLoader.java:
// loadedObj = createImage(...
This line that puts an image in the jar file into the hash table!
Without this line the images in the jar file are simply discarded.
Uncommenting this line renables caching of images in jar files.
Any applet the uses Applet.getImage() can be used as a testcase for this
problem. Put the image in a jar file (make sure it's path in the jar file
matches the URL passed to getImage() minus codebase) and ensure that the
image it is not available on the web server and the image won't appear.
Uncomment the line and the image will appear!
This regression is a must fix issue for Applications' production release by
1.1.5FCS.