用于引用项目的java.lang.NoClassDefFoundError

时间:2013-06-17 02:51:55

标签: java

我在eclipse中有2个项目。一个没有主要方法的mailn方法引用另一个方法。添加引用后我得到错误java.lang.NoClassDefFoundError:线程“main”中的异常

1 个答案:

答案 0 :(得分:0)

您可以从the project without main创建一个jar,然后将jar添加到the project with main method的类路径中。

创建jar:

选择没有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