|
Java Package help?
I just went through the painful process of trying to get a package working for the first time, but I have one last problem.
I have a package myPackage.geom, with a couple of geometry classes in it.
It is saved to C:\Users\Joe\java\myClasses\geom\*. I want to get the package to work from another folder, C:\Users\Joe\Java\Puzzle\. However, when I just put import myClasses.geom.*; at the beginning of a file in \Puzzle\, it says that myClasses.geom doesn't exist. How do I get it so that \Puzzle\ can "see" the myClasses package?
|