Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2011990 | 1.1.3 | Nakul Saraiya | P2 | Resolved | Fixed | b01 |
JDK-2011991 | 1.1 | Nakul Saraiya | P2 | Resolved | Fixed | 1.1fcs |
Create a class file within a package, such as:
xxx/xyzzy.java:
package xxx;
public class xyzzy{
public xyzzy(){
System.out.println("Xyzzy");
}
}
now zip this directory into a zip file and add the full path name to CLASSPATH.
Do not put the directory entries into the zip file.
Now try compiling another java file which contains the line:
import xxx.*;
This fails with the error:
Package xxx not found in import.
This bug does not occur if CLASSPATH is set to the directory containing the class files. Also,
if the import statment explictly imports xxx.xyzzy the zip file works. The runtime
also can load the zip file correctly.
Also, if the zipfile includes the directory entries, javac finds the class file.
I have reproduced this here and have an example of this set up.
- backported by
-
JDK-2011990 javac does not find packages in additional zip files.
-
- Resolved
-
-
JDK-2011991 javac does not find packages in additional zip files.
-
- Resolved
-
- relates to
-
JDK-4034985 javac not honoring CLASSPATH like java
-
- Closed
-