使用当下最火的GraalVM,将Jar包编译成二进制可执行文件。 使用JLink打包,将jar包编译成二进制可执行文件。 使用Exe4J生成启动器,然后使用压缩软件制作自解压的压缩包。 编写批处理,然后再用压缩软件制作自解压的压缩包。 仅分发Jar包,让使用者安装JRE,然后使用命令启动Jar包。
<?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>
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);
}
}
往期历史