On Wed, 27 Oct 2004, David Harel wrote:

> Hi all,
>
> I got a java application that it's installation cd is on Windows machine
> where you first have to install the JVM on the machine and from that
> moment onwards it is a regular java application (so I understand)
> On my Linux machine I have installedblackdown-jre-1.4.1.
> Looking at the batch script (bat file) I see the line:
> java -jar TL53.jar
>
> This makes sens but when I try this line on the Linux machine I get:
> 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:112)
>       at java.util.jar.JarFile.<init>(JarFile.java:117)
>       at java.util.jar.JarFile.<init>(JarFile.java:55)

"no such file or directory" with no file name? use strace, luke...

strace -f -eopen java -jar TL53.jar

and look at the output from the last line backwards. one of these failed
opens is what prompted the error.

-- 
guy

"For world domination - press 1,
 or dial 0, and please hold, for the creator." -- nob o. dy

=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to