When I try to extract files from jregex1.2_01-src.jar by typing "jar -xvf jregex1.2_01-src.jar" at the command line, I get:
created: META-INF/
inflated: META-INF/MANIFEST.MF
java.io.FileNotFoundException: META-INF/MANIFEST.MF: No such file or directory
at java.lang.Throwable.fillInStackTrace(Throwable.java:native)
at java.lang.Throwable.<init>(Throwable.java:38)
at java.lang.Exception.<init>(Exception.java:24)
at java.io.IOException.<init>(IOException.java:24)
at java.io.FileNotFoundException.<init>(FileNotFoundException.java:21)
at java.io.FileOutputStream.<init>(FileOutputStream.java:68)
at java.io.FileOutputStream.<init>(FileOutputStream.java:38)
at kaffe.tools.jar.XPFileOutputStream.<init>(XPFileOutputStream.java:23)
at kaffe.tools.jar.Jar.extractFilesInJar(Jar.java:808)
at kaffe.tools.jar.Jar.processJar(Jar.java:405)
at kaffe.tools.jar.Jar.start(Jar.java:60)
at kaffe.tools.jar.Jar.main(Jar.java:39)
When I type "jar -t jregex1.2_01-src.jar" at the command line, I get:
java.io.IOException: Bogus signature: 0xa0a0a0a
at java.lang.Throwable.fillInStackTrace(Throwable.java:native)
at java.lang.Throwable.<init>(Throwable.java:38)
at java.lang.Exception.<init>(Exception.java:24)
at java.io.IOException.<init>(IOException.java:24)
at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:51)
at kaffe.tools.jar.Jar.listFilesInJar(Jar.java:601)
at kaffe.tools.jar.Jar.processJar(Jar.java:402)
at kaffe.tools.jar.Jar.start(Jar.java:60)
at kaffe.tools.jar.Jar.main(Jar.java:39)
What can't I get to these files?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I try to extract files from jregex1.2_01-src.jar by typing "jar -xvf jregex1.2_01-src.jar" at the command line, I get:
created: META-INF/
inflated: META-INF/MANIFEST.MF
java.io.FileNotFoundException: META-INF/MANIFEST.MF: No such file or directory
at java.lang.Throwable.fillInStackTrace(Throwable.java:native)
at java.lang.Throwable.<init>(Throwable.java:38)
at java.lang.Exception.<init>(Exception.java:24)
at java.io.IOException.<init>(IOException.java:24)
at java.io.FileNotFoundException.<init>(FileNotFoundException.java:21)
at java.io.FileOutputStream.<init>(FileOutputStream.java:68)
at java.io.FileOutputStream.<init>(FileOutputStream.java:38)
at kaffe.tools.jar.XPFileOutputStream.<init>(XPFileOutputStream.java:23)
at kaffe.tools.jar.Jar.extractFilesInJar(Jar.java:808)
at kaffe.tools.jar.Jar.processJar(Jar.java:405)
at kaffe.tools.jar.Jar.start(Jar.java:60)
at kaffe.tools.jar.Jar.main(Jar.java:39)
When I type "jar -t jregex1.2_01-src.jar" at the command line, I get:
java.io.IOException: Bogus signature: 0xa0a0a0a
at java.lang.Throwable.fillInStackTrace(Throwable.java:native)
at java.lang.Throwable.<init>(Throwable.java:38)
at java.lang.Exception.<init>(Exception.java:24)
at java.io.IOException.<init>(IOException.java:24)
at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:51)
at kaffe.tools.jar.Jar.listFilesInJar(Jar.java:601)
at kaffe.tools.jar.Jar.processJar(Jar.java:402)
at kaffe.tools.jar.Jar.start(Jar.java:60)
at kaffe.tools.jar.Jar.main(Jar.java:39)
What can't I get to these files?
Stupid Eli. I didn't have write permission on the containing directory. Sorry to bother you all.