1、exe4j生成可执行exe文件
exe4j下载地址:https://www.ej-technologies.com/download/exe4j/files
网盘下载链接:https://pan.baidu.com/s/1JDpN70wxPBAqIPqijuOGiw
提取码:6666
注意:exe4j 6.0 需要jdk1.8及以上版本。
名字和公司随便写,License key需要百度下。
1.1 添加pom代码,生成带依赖的jar包
- pom.xml文件中添加以下依赖:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<configuration>
<!-- get all project dependencies -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- MainClass in mainfest make a executable jar -->
<archive>
<manifest>
<!--更改为自己的主函数启动类-->
<mainClass>com.bjwx.gui.ReqGui</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2、exe4j执行生成exe文件操作
1、选择带第三方依赖的jar包进行加载
2、
选择主函数所在启动类
3、常见问题处理:
3.1 源码运行正常,打包报错com.sun.x不存在
util包部分引入错误,需要更换下:
3.2 加载外部数据(如字典文件),路径找不到
更改为exe文件能加载到的位置,再生成jar包 。