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