如何将 Java 程序打包成安装包?创建 jar 文件,编译 java 程序并生成 jar 文件。使用打包工具将 jar 文件打包成可执行文件(exe)或安装程序。配置安装程序,包括安装程序名称、安装目录、快捷方式、注册表项和卸载程序。添加其他文件,如有需要,添加其他文件(如库、配置或文档)到安装程序中。构建安装程序,生成可分发的安装包。
如何使用 Java 将程序打包成安装包
步骤:
1. 创建 JAR 文件
2. 使用打包工具
立即学习“Java免费学习笔记(深入)”;
- 使用 EXE4J、Inno Setup 或 NSIS 等打包工具将 JAR 文件打包成可执行文件(EXE)或安装程序。
3. 配置安装程序
-
在打包工具中配置安装程序,包括:
- 安装程序名称和版本
- 安装目录
- 快捷方式和注册表项
- 卸载程序
4. 添加额外的文件
- 如果需要,可以将其他文件(如库、配置或文档)添加到安装程序中。
5. 构建安装程序
- 使用打包工具构建安装程序,生成可分发的安装包。
详细步骤:
1. 使用 Maven 编译 JAR 文件
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> <configuration> <archive> <manifest> <mainClass>com.example.Main</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
这将生成一个名为 target/my-app-1.0.0.jar 的 JAR 文件。
2. 使用 Inno Setup 打包
下载并安装 Inno Setup,然后创建新的 Inno Setup 脚本:
[Setup] AppName=My Application AppVersion=1.0.0 DefaultDirName={localappdata}My Application [Files] Source: "targetmy-app-1.0.0.jar"; DestDir: "{app}" [Icons] Name: {commonprograms}My Application; Filename: "{app}my-app.ico" [Run] Filename: "{app}my-app.jar"; Description: "Run My Application"
3. 构建安装程序
在 Inno Setup 中,点击编译按钮。这将生成名为 my-app-setup.exe 的安装程序。