package pkg1;
public class demoFile1 {
private int maze = 5;
public demoFile1() {}
public demoFile1 (int maze) {
this.maze = maze;
System.out.println(this.maze);
}
}
package pkg2;
import pkg1.*;
public class demoFile2 {
public static void main (String[] args) {
demoFile1 obj = new demoFile1 (10);
}
}
Here, I have created two packages pkg1
and pkg2
. In pkg1
, there is a class and another class inside pkg2
which imports the pkg1
to initailize the former class, hence it needs to import the .class
from pkg1
, this produces an error when tried to call from within this sub-directory:
error: package pkg1 does not exist
Please note that the program worked just fine when the pkg1.demoFile1.class
file was imported by demoFile2.class
from outside that sub-directory (different levels, without confining under pkg2
) but, not when both these packages were on the same level, each having source code files and .class
files i.e., when pkg2.demoFile2.class
tries to import pkg1.demoFile1.class
Edit#1 : Folder Structure: click here
What I feel is that there may have been some issue with hierarchical ordering/precedence while creating or importing the .class
file from the package OR the overall definition(s) would have been written wrong. Please help.
Most likely you have a classpath problem. Class files should be placed inside folders that match the java packages declaration. The root of the folder structure may start at each of the folders/jars present in your classpath (edit: your folder structure is correct).
If you run
by default a "current directory" classpath is used (the current directory is called "."). So demoFile2.class must be inside the pkg2 folder and demoFile1.class inside the pkg2.class folder and you must execute the java program from the folder containing both the package folders.
This folder structure is usually handled by the java editor. So I suppose you are running "javac" from the command line. In this case specify an output folder so that it can create the required folder structure there:
If you want to compile one file at a time you need to tell javac where it can find the previously compiled classes, again using the class path (again run this from the root folder):
You can do all of this from any folder you want specifiying the classpath correctly (as an absolute or relative path). Running all the commands from the root folder is the simplest option.
In java there are no ordering/precedence issues in classloading or in any other context I can think of right now.