package does not exist (Again, I know...)
Hi,
This problem seems to be pretty common, but I didn't find anything that helped me. I'm working on MacOS X, I hope someone can give me an answer or direct to some good ressources on that topic.
Here's the problem:
I'm working through a textbook with exercices, and they provide java-classes to read text--input from the command-line. They're in a folder Prog1Tools, located in ~/System/Library/Java. I chose that folder since one of the classpaths reads: $HOME/Library/Java:$NEXT_ROOT/Library/Java:$NEXT_ROOT/System/Library/Java:
I also tried to put Prog1Tools in the location specified in the first classpath above, but either way, when I compile my program with
import Prog1Tools.IOTools,
I get the error:
HelloXCodeWorld.java:9: package Prog1Tools does not exist
import Prog1Tools.IOTools;
^
1 error
Thanks for suggestions, I'm a born-again Java programmer, and got stuck pretty quickly there....

