So I have the following structure:

HelloWorld
  -> Package1
      -> Class1.java
  -> Package2
      -> Class2.java 

I am trying to complile Class2.java from the command line using:

javac -classpath ../equinox.jar Package2/Class2.java

But i keep on getting the error : package Package1 does not exist

How can I fix this?

有帮助吗?

解决方案

Include the current directory in the compilation path

javac -classpath ../equinox.jar:. Package2/Class2.java

Explanation: because the -classpath argument is used the current directory is no longer automatically used in the classpath so needs to be added explicitly.

See the Java programming language compiler for a full description of all command line options

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top