Java Package Does Not Exist Error

前端 未结 7 1333
执笔经年
执笔经年 2020-12-03 04:50

So there\'s a folder /usr/share/stuff in the root directory

in stuff there are a bunch of java files with package org.name definitions at t

7条回答
  •  醉酒成梦
    2020-12-03 05:20

    Are they in the right subdirectories?

    If you put /usr/share/stuff on the class path, files defined with package org.name should be in /usr/share/stuff/org/name.

    EDIT: If you don't already know this, you should probably read this: http://download.oracle.com/javase/1.5.0/docs/tooldocs/windows/classpath.html#Understanding

    EDIT 2: Sorry, I hadn't realised you were talking of Java source files in /usr/share/stuff. Not only they need to be in the appropriate sub-directory, but you need to compile them. The .java files don't need to be on the classpath, but on the source path. (The generated .class files need to be on the classpath.)

    You might get away with compiling them if they're not under the right directory structure, but they should be, or it will generate warnings at least. The generated class files will be in the right subdirectories (wherever you've specified -d if you have).

    You should use something like javac -sourcepath .:/usr/share/stuff test.java, assuming you've put the .java files that were under /usr/share/stuff under /usr/share/stuff/org/name (or whatever is appropriate according to their package names).

提交回复
热议问题