When I tried to run a java by
../jre/bin abc.java
I am getting this: FSUM7351 not found
What it means?
|
When I tried to run a java by ../jre/bin abc.java I am getting this: FSUM7351 not found What it means? | ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
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:
As a side note, as stated here FSUM7351 is an IBM OS/390 error, not a GNU/Linux error. | |||
|
feedback
|