I just updated to the latest version of Java
> java -version java version "1.7.0_03" Java(TM) SE Runtime Environment (build 1.7.0_03-b05) Java HotSpot(TM) 64-Bit Server VM (build 22.1-b02, mixed mode) > javac -version javac 1.7.0_03
I am having problems running a Java program from the command line. For instance:
public class Tester { public static void main(String[] args) { System.out.println("in main"); } }
I compiled it on the command line, then try to execute it:
> javac Tester.java > java Tester Error: Could not find or load main class Tester
This is mistake? Oddly enough, I have no problem running the program using Eclipse.
Mroth source share