java - Launch4j:This application requires a Java Runtime Environment 1.8.0_161 using maven?

标签 java maven ant bundle launch4j

我正在使用 launch4j maven 插件为我的应用程序生成一个 .exe。我还想嵌入一个 bundle 的 JRE。我成功地从我安装了 java 1.8.0_161 的电脑上实现了它。我现在的问题是,当我尝试从没有安装 java 的 VM 机器上执行 .exe 时,出现了这个错误

CryptoAlertNews: This application requires a Java Runtime Environment 1.8.0_161

为什么我做错了会发生这种情况?这是我在 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>com.panos</groupId>
  <artifactId>com.panos</artifactId>
  <version>1.0-SNAPSHOT</version>

  <name>com.panos</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.7.21</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.6</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>3.1.0</version>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-source</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>com.panos.App</mainClass>
            </manifest>
          </archive>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>com.akathist.maven.plugins.launch4j</groupId>
        <artifactId>launch4j-maven-plugin</artifactId>
        <version>1.7.25</version>
        <executions>
          <execution>
            <id>l4j-clui</id>
            <phase>package</phase>
            <goals>
              <goal>launch4j</goal>
            </goals>
            <configuration>
              <headerType>console</headerType>
              <outfile>target/CryptoAlertNews.exe</outfile>
              <icon>src/resources/Image/photo.ico</icon>
              <jar>target/com.panos-1.0-SNAPSHOT-jar-with-dependencies.jar</jar>
              <errTitle>CryptoAlertNews</errTitle>
              <classPath>
                <mainClass>com.panos.App</mainClass>
                <addDependencies>false</addDependencies>
                <preCp>anything</preCp>
              </classPath>
              <jre>
                <path>src/resources/jre</path>
                <bundledJre64Bit>false</bundledJre64Bit>
                <bundledJreAsFallback>true</bundledJreAsFallback>
                <minVersion>1.8.0_161</minVersion>
                <jdkPreference>preferJre</jdkPreference>
                <runtimeBits>64/32</runtimeBits>
              </jre>
              <versionInfo>
                <fileVersion>1.0.0.0</fileVersion>
                <copyright>C</copyright>
                <txtFileVersion>${project.version}</txtFileVersion>
                <fileDescription>${project.name}</fileDescription>
                <productVersion>1.0.0.0</productVersion>
                <txtProductVersion>1.0.0.0</txtProductVersion>
                <productName>${project.name}</productName>
                <internalName>AppName</internalName>
                <originalFilename>CameraControl.exe</originalFilename>
              </versionInfo>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
    <resources>
      <resource>
        <directory>src/resources</directory>
        <includes>
          <include>**/*.exe</include>
          <include>**/*.txt</include>
          <include>**/*.properties</include>
          <include>**/*.crx</include>
          <include>**/*.fxml</include>
          <include>**/*.css</include>
          <include>**/*.json</include>
          <include>**/*.zip</include>
          <include>**/*.dll</include>
          <include>**/*.ico</include>
        </includes>
      </resource>
    </resources>
  </build>
</project>

最佳答案

您必须知道 Launch4J 确实嵌入 JRE,而是在运行时引用它。

<path> contents 应该是在执行 EXE 时指向 JRE 的路由。

您可以使用 ZIP 分发您的应用程序,然后放置一个文件夹 jre在根文件夹,和你的 .EXE在同一个文件夹中。

那么您的 ZIP 内容将如下所示:

|jre (with the contents of the jre uncompressed, including bin directory)
|app.exe

您可以在这里找到与您的问题类似的问题:How to bundle a JRE with Launch4j?

关于java - Launch4j:This application requires a Java Runtime Environment 1.8.0_161 using maven?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60351814/

相关文章:

java - 理解 Java Completablefuture 的行为

java - 来自抽象类的父类(super class)的模拟字段

java - JPA OneToMany ManyToOne @OneToOne 或 @ManyToOne 引用未知实体 :

javascript - wro4j maven 插件 : how do I exclude files for jshint?

bash - 根据文件所在的文件夹移动和重命名文件

java - 在 Web 应用程序中实现长时间运行的流程

java - Maven:如何在多模块项目中构建其他模块之前运行模块?

java - 从命令行运行 Maven 插件的语法是什么。

java - JAXWS-RI WSGEN 配置为使用特定的 JDK

android - Ant 与 Eclipse 构建 Android : Strengths of Each?