When I tried to run a java by

../jre/bin abc.java

I am getting this: FSUM7351 not found

What it means?

link|improve this question
feedback

migrated from stackoverflow.com Jul 16 '11 at 14:54

This question came from our site for professional and enthusiast programmers.

1 Answer

In a standard JRE installation jre/bin is a directory. To run a Java program you need to use javac to build a class file, then run it with java. Something like:

../jre/bin/javac abc.java
../jre/bin/java -classpath . abc

As a side note, as stated here FSUM7351 is an IBM OS/390 error, not a GNU/Linux error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown