-1

我在 Eclipse 中有 2 个项目。一个有 mailn 方法引用另一个没有 main 方法。添加引用后,我在线程“main”中收到错误 java.lang.NoClassDefFoundError:Exception

4

1 回答 1

0

您可以从创建一个 jar the project without main,并将该 jar 添加到the project with main method.

创建罐子:

选择没有main方法的项目,执行以下步骤:

File -> Export -> Java -> Jar File

使用 main 方法将 jar 作为库添加到项目中

选择带有 main 方法的项目,然后执行以下步骤:

Build Path -> Configure Build Path... -> Select Libraries tab -> Add External JARS

或者,您可以创建一个名为 的文件夹lib,并将 jar 放在该lib目录中,然后您可以执行以下步骤:

Build Path -> Configure Build Path... -> Select Libraries tab -> Add JARS
于 2013-06-17T02:54:31.033 回答