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

avoid extra ping from Applet.getClass().getResource() if possible.

XMLWordPrintable

    • generic
    • generic

      We have three applet test cases as below. In applet,
      1. Call and call "getClass().getResource(...)" only. Everytime we always get back a 200 for this. This is fine because we have not download any contents.

      2. Call and call "getClass().getResourceAsStream(...)" only. The first time we get back a 200. Then we get back a 304 which is correct behaviour because the resource has been downloaded and cached and not yet updated on server side.

      3. Call "URL url = getClass().getResource(...)" followed by a call "url.openConnection().getInputStream(); # and then read from the InputStream".
      - The first time we got back TWO 200s - one for getResoruce(), the other for the real downloading with InputStream.
      - The second time we got back a 200 followed by a 304 - one for get getResource() again, the other for the real downloading with InputStream - and this time we do not download anything because the contents has been cached.

      We could probably try to avoid extra ping from Applet.getClass().getResource(), espically for case #3.

            almatvee Alexander Matveev
            stephenh Stephen Hu (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: