doug,
Welcome to JavaRanch!
It does look as if "java" is in your path correctly (probably). Let's try to isolate the cause of your troubles. Can you do this?
1. Assuming that you are working under Windows (or can interpret this for your operating system), from the "c" drive, create a directory called "tempjr".
2. In this "tempjr" directory, create a file called "HelloWorld.java" with these contents:
3. At the command line, from the directory "tempjr", compile "HelloWorld.java" like this:
javac HelloWorld.java If that fails, try this:
javac -classpath . HelloWorld.java A class file named "HelloWorld.class" should now have been created in the directory "tempjr".
4. At the command line, from the directory "tempjr", run the HelloWorld program like this:
java HelloWorld If that fails, try this:
java -classpath . HelloWorld The program should have displayed "Hello World".
Any luck yet?