This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
First, please check your private messages by clicking on My Private Messages. Thanks!
Next, are you certain it's the CLASSPATH you want to set? Generally, this is not the case. What are you trying? And what errors are you getting?
(In the meantime, see this thread for a Mac "Hello World" example.)
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer sscce.org
ekanebuh atnedonez
Greenhorn
Joined: Oct 19, 2007
Posts: 1
posted
0
Hello NK.
It's important for you to know, "where" your Java files are saved.
The easiest way I compile my files is:
1. I save them in one main place (for example: /myusername/javascripts
2. I open the terminal and change into the directory -> cd javascripts
3. I compile my Java file: javac example.java
4. I run my Java file: java example
You can also compile your files from your home directory using the whole path to the file, but I think it�s much quicker and easier to change into the directory and stay there for compiling and executing your Java files.