I have a java source file named File_2.java that starts with import Jama.*;  and it contains the main method.
The current directory contains java source file File_2.java and the Jama-1.0.3.jar file
I can compile the source File_2.java using 
javac -classpath Jama-1.0.3.jar File_2.java
This generates a File_2.class file in the current directory which is not getting executed. I have tried the following
$ java File_2
Exception in thread "main" java.lang.NoClassDefFoundError: Jama/Matrix
at File_2.main(File_2.java:32)
and
$ java -classpath Jama-1.0.3.jar File_2
Error: Could not find or load main class File_2
Thus my question is how do I execute the File_2.class file ? Kindly help.
 
    