当前Java程序打包分发的几种方案:
使用当下最火的GraalVM,将Jar包编译成二进制可执行文件。 使用JLink打包,将jar包编译成二进制可执行文件。 使用Exe4J生成启动器,然后使用压缩软件制作自解压的压缩包。 编写批处理,然后再用压缩软件制作自解压的压缩包。 仅分发Jar包,让使用者安装JRE,然后使用命令启动Jar包。
以上方案都有不同的优缺点:
技术方案 | 优点 | 缺点 |
---|---|---|
GraalVM | 性能提升,减少资源损耗,安全性高 | 构建耗时,调试困难,不好支持反射 |
Jlink | 二进制文件,比携带环境更轻量级 | 构建复杂,调试困难,体积大 |
Exe4J | 降低使用门槛,有更好的体验,便于调试 | 体积大,需要JRE运行1,不适合做小工具 |
批处理 | 降低使用门槛,配置灵活,易于更新,便于调试 | 体积大,需要JRE运行,不适合做小工具 |
仅Jar包 | 分发文件小,容易更新 | 没有JRE的电脑上不能运行,需要命令启动,使用门槛高,体验不好 |
以上方案中,二进制文件分发会调试困难,jar包形式分发会影响使用体验,现在我综合上边的几种方案,用Winform制作一个打包工具,用以将Java程序打包成二进制可执行文件,软件界面如下:
软件使用如下:
现有一个Swing程序如下:
pom.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.helloswing</groupId>
<artifactId>HelloSwing</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/com.formdev/flatlaf -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.5.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<configuration>
<!-- 获取所有项目依赖项 -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- 去除jar-with-dependencies后缀 -->
<appendAssemblyId>false</appendAssemblyId>
<!-- 指定启动类 -->
<archive>
<manifest>
<mainClass>org.hellloswing.HelloSwing</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- 绑定到包装阶段 -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
HelloSwing.java文件
package org.hellloswing;
import com.formdev.flatlaf.FlatDarkLaf;
import com.formdev.flatlaf.FlatLightLaf;
import javax.swing.*;
import java.awt.*;
public class HelloSwing {
public static void main(String[] args) throws UnsupportedLookAndFeelException {
// 初始化皮肤
FlatLightLaf.install();
UIManager.setLookAndFeel( new FlatDarkLaf());
// 初始化窗口
JFrame jFrame = new JFrame("Hello Swing!");
// 设置大小
jFrame.setSize(500, 500);
// 关闭窗口后退出
jFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
// 设置居中
jFrame.setLocationRelativeTo(null);
// 设置元素
JPanel jPanel = new JPanel(new BorderLayout());
jPanel.add(new JLabel("Hello Swing!", JLabel.CENTER), BorderLayout.CENTER);
jFrame.getContentPane().add(jPanel);
// 显示窗口
jFrame.setVisible(true);
}
}
将其打包成胖JAR后,导出精简JRE,然后使用打包工具打包,将JAR文件于JRE打包成exe文件。之后就可以双击运行了。
特此做个记录。
来源:juejin.cn/post/7411745719226482738
END
精品资料,超赞福利,免费领
最近开发整理了一个用于速刷面试题的小程序《面试手册》【点击使用】;其中收录了上千道常见面试题及答案(包含基础、并发、JVM、MySQL、Redis、Spring、SpringMVC、SpringBoot、SpringCloud、消息队列等多个类型),欢迎您的使用。
👇👇