I have a directory structure like com/example/web
under the root directory which contains a java file Bear.java
. I have another java file BearExtra.java
in directory structure com/example/model
in same root directory as above. I am calling a method in BearExtra.java
from Bear.java
and I am getting the error that the package does not exist.
I have imported com.example.model
package in my java file. Can give me some advice?
Did you specify the 'package' in your class files?
Bear.java
BearExtra.java
This works:
com/example/model/BearExtra.java
com/example/web/Bear.java
Now, to compile and run these classes, go to the directory where you can "see" the
com
folder and do:*nix/MacOS
Windows
and the following is being printed to the console: