工具:
eclipse
方法:
工程中不包含第三方的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。
在编写好的java包上右键--export。
下面是简单的一个java小程序,可以用来做测试
public class Main { public static void main(String[] args) { JFrame frame = new JFrame(); JPanel panel = new JPanel(); JTextArea textArea = new JTextArea(); panel.setLayout(new GridLayout()); textArea.setText(" Hello world...\n Today is "+ new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss").format(new Date())); panel.add(new JScrollPane(textArea)); frame.add(panel); frame.setSize(500, 500); frame.setVisible(true); }}
在Export对话框中,选择要导出的JAR File,也可以使用模糊查询输入关键字“jar”
选择导出的目录位置
注意导出的后缀是.jar格式的文件
选择程序的入口,也就是main方法所在的类中。然后点击Finish,完成后,会在导出的目录中找到对应的jar文件。
测试导出的jar是否正常,使用java -jar命令进行测试。
首先进入jar所在的目录,然后执行: java -jar XXX.jar 命令
如果使用上面步奏的代码,会弹出一个windows框,表示导出正常。