error: cannot read HelloworldApp.java
Hello
When I compile the HelloWorldApp.java program. I have this problem:
I get: error: cannot read HelloworldApp.java. What can I do?
In addition, How do I use the options? For example:
javac -g HelloworldApp.java
I get an error saying that I did not use well the flag g. Is the command bad written?.
[338 byte] By [
aerialita] at [2007-10-2 5:31:39]

You post has different capitalization of the program name:
". . .compile the HelloWorldApp.java program. I have this problem:
I get: error: cannot read HelloworldApp.java.
Java is case-sensitive, make sure to capitalize correctly.
Open a cmd/command window in the directory that contains your .java file and do a "dir helloworldapp.java" command to verify the file exists with the correct name.
Read the documentation for the javac command to learn how to use the command options.