Hi, Mike! Thanks for the reply. Yes, I neglected to mention that I'm on a Windows machine running Vista. I have actually successfully written, compiled, and run Java programs with JCreator, but decided I wanted to do it from the command line instead. That's when all the trouble started!
At the command line, first I head to the directory where my HelloWorldApp.java file is. That directory is c:\PROGRA~1\Java\jk1.6.0_11. When I then do a directory listing ("dir"), here is what shows up:
12/04/2008 09:22 PM <DIR> .
12/04/2008 09:22 PM <DIR> ..
12/01/2008 11:19 PM <DIR> bin
11/10/2008 06:16 AM 3,841 COPYRIGHT
12/01/2008 11:24 PM <DIR> demo
12/02/2008 12:42 AM <DIR> docs
12/04/2008 09:22 PM 1,908 HelloWorldApp.java
12/01/2008 11:19 PM <DIR> include
12/01/2008 11:21 PM <DIR> jre
12/01/2008 11:22 PM <DIR> lib
12/01/2008 11:19 PM 17,400 LICENSE
12/01/2008 11:19 PM 17,496 LICENSE.rtf
12/01/2008 11:19 PM 29,318 README.html
12/01/2008 11:19 PM 25,828 README_ja.html
12/01/2008 11:19 PM 21,275 README_zh_CN.html
12/01/2008 11:40 PM 5,305 register.html
12/01/2008 11:40 PM 5,724 register_ja.html
12/01/2008 11:40 PM 4,902 register_zh_CN.html
12/01/2008 11:24 PM <DIR> sample
11/10/2008 06:17 AM 19,621,235 src.zip
12/01/2008 11:19 PM 231,168 THIRDPARTYLICENSEREADME.txt
12 File(s) 19,985,400 bytes
9 Dir(s) 5,020,598,272 bytes free
Next, I enter "javac HelloWorldApp.java" and hit enter. Things whirr and hum and I get no error message. Then I type the "dir" command again, and find that, alas, the HelloWorldApp.class file that I had so been hoping to see is not there. As far as I can tell, the contents of the directory are precisely the same as before the "javac" command.
Here's a transcript of the entire session:
C:\Users\Jessica>cd c:\progra~1\java\jdk1.6.0_11
c:\PROGRA~1\Java\jdk1.6.0_11>dir
Volume in drive C is SQ004286V02
Volume Serial Number is CE35-D374
Directory of c:\PROGRA~1\Java\jdk1.6.0_11
12/04/2008 09:22 PM <DIR> .
12/04/2008 09:22 PM <DIR> ..
12/01/2008 11:19 PM <DIR> bin
11/10/2008 06:16 AM 3,841 COPYRIGHT
12/01/2008 11:24 PM <DIR> demo
12/02/2008 12:42 AM <DIR> docs
12/04/2008 09:22 PM 1,908 HelloWorldApp.java
12/01/2008 11:19 PM <DIR> include
12/01/2008 11:21 PM <DIR> jre
12/01/2008 11:22 PM <DIR> lib
12/01/2008 11:19 PM 17,400 LICENSE
12/01/2008 11:19 PM 17,496 LICENSE.rtf
12/01/2008 11:19 PM 29,318 README.html
12/01/2008 11:19 PM 25,828 README_ja.html
12/01/2008 11:19 PM 21,275 README_zh_CN.html
12/01/2008 11:40 PM 5,305 register.html
12/01/2008 11:40 PM 5,724 register_ja.html
12/01/2008 11:40 PM 4,902 register_zh_CN.html
12/01/2008 11:24 PM <DIR> sample
11/10/2008 06:17 AM 19,621,235 src.zip
12/01/2008 11:19 PM 231,168 THIRDPARTYLICENSEREADME.txt
12 File(s) 19,985,400 bytes
9 Dir(s) 5,020,598,272 bytes free
c:\PROGRA~1\Java\jdk1.6.0_11>javac HelloWorldApp.java
c:\PROGRA~1\Java\jdk1.6.0_11>dir
Volume in drive C is SQ004286V02
Volume Serial Number is CE35-D374
Directory of c:\PROGRA~1\Java\jdk1.6.0_11
12/04/2008 09:22 PM <DIR> .
12/04/2008 09:22 PM <DIR> ..
12/01/2008 11:19 PM <DIR> bin
11/10/2008 06:16 AM 3,841 COPYRIGHT
12/01/2008 11:24 PM <DIR> demo
12/02/2008 12:42 AM <DIR> docs
12/04/2008 09:22 PM 1,908 HelloWorldApp.java
12/01/2008 11:19 PM <DIR> include
12/01/2008 11:21 PM <DIR> jre
12/01/2008 11:22 PM <DIR> lib
12/01/2008 11:19 PM 17,400 LICENSE
12/01/2008 11:19 PM 17,496 LICENSE.rtf
12/01/2008 11:19 PM 29,318 README.html
12/01/2008 11:19 PM 25,828 README_ja.html
12/01/2008 11:19 PM 21,275 README_zh_CN.html
12/01/2008 11:40 PM 5,305 register.html
12/01/2008 11:40 PM 5,724 register_ja.html
12/01/2008 11:40 PM 4,902 register_zh_CN.html
12/01/2008 11:24 PM <DIR> sample
11/10/2008 06:17 AM 19,621,235 src.zip
12/01/2008 11:19 PM 231,168 THIRDPARTYLICENSEREADME.txt
12 File(s) 19,985,400 bytes
9 Dir(s) 5,020,561,408 bytes free
c:\PROGRA~1\Java\jdk1.6.0_11> // Bummer... no class file!
I hope that provides you with some more detail on the problem, and I thank you very much for your help!