1. 工程中不包含第三方的jar包
这种情况比较简单,选中需要生成jar的工程,右击-->Export,出现如下的窗口
选中java--- > JAR file,出现如下窗口,
此处要:
选中 Export generated class files and resources;
选中 Compress the contents of the JAR file;
选中 Overwrite existing files without warning;
然后“Next”,出现如下窗口
选中 Export class files with compile errors;
选中 Export class files with compile warnings;
点击“Next”,出现如下窗口
选择“Main class”,then “finish” OK。
运行jar包的方法:
cmd,进入jar包所在的位置,运行命令 java -jar *.jar,就可以了。或者直接配置文件关联。
2.工程包含第三方的jar包时
如
果工程中包含第三方的jar包时,安装上面的方法生产的jar包,在运行时会报java.lang.NoClassDefFoundError的错,经过
google,