Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4233380

URLClassLoader does not delete cached jar files

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.1
    • core-libs
    • x86
    • windows_nt



      Name: vi73552 Date: 04/27/99


      Bug ID 4180369 says URLClassLoader cached jar files (jar_cacheXXX.tmp) should be deleted on exit as of 1.2fcs(File.deleteOnExit).

      This isn't happening. Run the attached application and check your temp directory - it leaves the jar_cache file after exiting. Use "jar tvf" to view the contents of the jar_cache file to verify it is the one specified in the URL in the source code.


      import java.net.*;
      public class JarCacheJunk {
      public static void main(String args[]) throws Exception {
      URL urls[] = new URL[1];
      urls[0] = new URL("http://morechat.talkcity.com/java/ezclasses/ezlite.jar");
      URLClassLoader cl = new URLClassLoader(urls);
      Class cls = cl.loadClass("lw.ezlite.EZLite");
      System.exit(0);
      }
      }
      (Review ID: 57157)
      ======================================================================

            Unassigned Unassigned
            vasya Vassili Igouchkine (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: