Java programs aren't run from .java files. They must be compiled to .class files.

To compile from the command line:


javac -sourcepath the_source.java

The prefered method though, is to get...