-
Enhancement
-
Resolution: Duplicate
-
P4
-
None
-
1.4.2
-
sparc
-
solaris_9
Name: rmT116609 Date: 07/28/2003
A DESCRIPTION OF THE REQUEST :
Include the filename of the zipfile which caused the no such file or directory
exception.
Occures in all JDK version on all platforms.
JUSTIFICATION :
Starting large java applications which can use a lot of jars (ours uses 43
currently). When something goes wrong and one is missing, we use truss to find
out which one, as the information is available in the ZipFile class adding it to
ZipExecption message would make things easier.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
java -jar test.jar
Exception in thread "main" java.util.zip.ZipException: No such file or directory test.jar
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:105)
at java.util.jar.JarFile.<init>(JarFile.java:110)
at java.util.jar.JarFile.<init>(JarFile.java:52)
ACTUAL -
java -jar test.jar
Exception in thread "main" java.util.zip.ZipException: No such file or directory
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:105)
at java.util.jar.JarFile.<init>(JarFile.java:110)
at java.util.jar.JarFile.<init>(JarFile.java:52)
---------- BEGIN SOURCE ----------
Do not need source code execute:
java -jar test.jar
in a directory that doesn't have a test.jar in it.
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
use truss
(Incident Review ID: 192698)
======================================================================
A DESCRIPTION OF THE REQUEST :
Include the filename of the zipfile which caused the no such file or directory
exception.
Occures in all JDK version on all platforms.
JUSTIFICATION :
Starting large java applications which can use a lot of jars (ours uses 43
currently). When something goes wrong and one is missing, we use truss to find
out which one, as the information is available in the ZipFile class adding it to
ZipExecption message would make things easier.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
java -jar test.jar
Exception in thread "main" java.util.zip.ZipException: No such file or directory test.jar
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:105)
at java.util.jar.JarFile.<init>(JarFile.java:110)
at java.util.jar.JarFile.<init>(JarFile.java:52)
ACTUAL -
java -jar test.jar
Exception in thread "main" java.util.zip.ZipException: No such file or directory
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:105)
at java.util.jar.JarFile.<init>(JarFile.java:110)
at java.util.jar.JarFile.<init>(JarFile.java:52)
---------- BEGIN SOURCE ----------
Do not need source code execute:
java -jar test.jar
in a directory that doesn't have a test.jar in it.
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
use truss
(Incident Review ID: 192698)
======================================================================
- duplicates
-
JDK-5032358 "java.util.zip.ZipException: The system cannot find the file specified"
-
- Resolved
-
- relates to
-
JDK-6359688 Zip API classes do not report name of file when it cannot be opened
-
- Closed
-