Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

package does not exist error!

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?

like image 557
rdx Avatar asked Jul 12 '11 14:07

rdx


1 Answers

This works:

com/example/model/BearExtra.java

package com.example.model;

public class BearExtra {
  public static void go() {
    System.out.println("Yay, it works!");
  } 
}

com/example/web/Bear.java

package com.example.web;

import com.example.model.*;

public class Bear {
  public static void main(String[] args) {
    BearExtra.go();
  }
}

Now, to compile and run these classes, go to the directory where you can "see" the com folder and do:

*nix/MacOS

javac -cp . com/example/model/*.java com/example/web/*.java
java -cp . com.example.web.Bear 

Windows

javac -cp . com\example\model\*.java com\example\web\*.java
java -cp . com.example.web.Bear 

and the following is being printed to the console:

Yay, it works!
like image 143
Bart Kiers Avatar answered Oct 21 '22 20:10

Bart Kiers