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

file: URL's don't handle .. properly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 1.2.0
    • 1.2.0
    • core-libs
    • None
    • 1.2beta4
    • generic, sparc
    • solaris_2.6
    • Verified

      datsun$ cat url4.java
      import java.net.*;

      public class url4 {

          public static void main(String args[]) {
              try {
                  URL u = new URL(new URL(args[0]), args[1]);
                  System.out.println("URL: " + u.toString());
              } catch (Exception e) {
                  System.out.println(e);
              }
          }
      }
      datsun$ /usr/local/java/jdk1.2/solaris/bin/java url4 file:/x/y/z a
      URL: file:/x/y/a
      datsun$ /usr/local/java/jdk1.1.6/solaris/bin/java url4 file:/x/y/z a
      URL: file:/x/y/a
      datsun$ /usr/local/java/jdk1.2/solaris/bin/java url4 file:/x/y/z ../../a
      URL: file:/x/y//a
      datsun$ /usr/local/java/jdk1.1.6/solaris/bin/java url4 file:/x/y/z ../../a
      URL: file:/a
      datsun$ /usr/local/java/jdk1.2/solaris/bin/java url4 file:/x/y/z ../a
      URL: file:/x/y/../a
      datsun$ /usr/local/java/jdk1.1.6/solaris/bin/java url4 file:/x/y/z ../a
      URL: file:/x/a

      Note how all the cases involving .. are handled quite differently from 1.1.6.

      This is preventing HotJava Views from working on JDK 1.2.

            mmcclosksunw Michael Mccloskey (Inactive)
            bshannon Bill Shannon (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: