Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

import - Java cannot find package when importing

I have a file structure as follows:

src/cs/example/Hello.java
src/cs/utility/HelloHelp.java
bin/cs/example/Hello.class
bin/cs/utility/HelloHelp.class

The package and import statements in Hello.java are:

package cs.example;
import cs.utility.MyMethods;

While the package statement in HelloHelp is:

package cs.utility;

I attempt to run Hello (that uses a method from HelloHelp):

    java -cp src/cs/utility src/cs/example/Hello.java
src/cs/example/Hello.java:2: error: package cs.utility does not exist
import cs.utility.HelloHelp;
                     ^
src/cs/example/Hello.java:10: error: cannot find symbol
        int max = HelloHelp.borp(intOne,intTwo);
                  ^
  symbol:   variable HelloHelp
  location: class Hello

Any help on resolving this issue would be very useful, thank you!

question from:https://stackoverflow.com/questions/65891896/java-cannot-find-package-when-importing

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In your java -cp call you are pointing to your .java files instead of your .class files in /bin.

Try changing your java command to use the class files instead. Something like the following should work:

java -cp "bin/*" cs.example.Hello


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...