如何使用gradle-launch 4j插件将gradle项目编译为exe

qaxu7uf2  于 2023-10-19  发布在  其他
关注(0)|答案(2)|浏览(223)

我用Gradle创建了一个JavaFX应用程序,想将其导出到exe沿着所有依赖项和JRE,最好的方法是什么?
我尝试使用Gradle-launch 4j提供的快速入门,但exe无法启动,它确实在IDE中启动,当我从命令行运行时,我收到错误JavaFX modules are needed to run the application
这是我的build.gradle脚本

plugins {
    id 'java'
    id 'application'
    id 'org.openjfx.javafxplugin' version '0.0.5'
    id 'edu.sc.seis.launch4j' version '2.4.6'
}

group 'Starter Apps'
version '1.0-SNAPSHOT'

sourceCompatibility = 11
mainClassName = "$moduleName/controllers.Main"

repositories {
    mavenCentral()
    jcenter()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile (group: 'com.jfoenix', name: 'jfoenix', version: '9.0.8'){
        exclude group: 'org.openjfx'
    }
    compile ('de.jensd:fontawesomefx-controls:11.0'){
        exclude group: 'org.openjfx'
    }
    compile ('de.jensd:fontawesomefx:8.9'){
        exclude group: 'org.openjfx'
    }
    compile ('de.jensd:fontawesomefx-icons525:4.6.3'){
        exclude group: 'org.openjfx'
    }
    compile (group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'){
        exclude group: 'org.openjfx'
    }
}

//create a single Jar with all dependencies
task fatJar(type: Jar) {
    manifest {
        attributes 'Implementation-Title': 'Gradle Jar File Example',
                'Implementation-Version': version,
                'Main-Class': "controllers.Main"
    }
    baseName = project.name + '-all'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
}

javafx {
    modules = [ 'javafx.controls', 'javafx.fxml' ]
    version = '11.0.+'
}

launch4j {
    headerType='console'
    outfile = "Burj2.exe"
    icon = "${projectDir}/src/main/resources/images/icon.ico"
    jar = '../libs/Master_Mode_System_Config-all-1.0-SNAPSHOT.jar'
}

这里是我的module-info.java

module Master_Mode_System_Config {
    requires javafx.controls;
    requires javafx.fxml;
    requires java.mail;
    requires com.jfoenix;

    opens controllers to javafx.fxml;
    exports controllers;
}

应用程序在IDE上运行良好,我真的很困惑,为什么这是一个问题。如果你能帮忙的话,我将不胜感激。

enxuqcxy

enxuqcxy1#

使用以下更改更新您的build.gradle。由于它是一个JavaFx应用程序,因此不能是控制台类型。它应该是gui类型,我已经在下面更新。您必须提供主类名(具有main方法的类名)和完整的包名。一旦你运行,你将能够看到exe文件,你可以启动它。

launch4j {
    headerType="gui"
    mainClassName = <provide your main class name>
    outfile = "Burj2.exe"
    icon = "${projectDir}/src/main/resources/images/icon.ico"
    jar = '../libs/Master_Mode_System_Config-all-1.0-SNAPSHOT.jar'
}
eit6fx6z

eit6fx6z2#

如何解决错误:缺少JavaFX运行时组件,运行此应用程序需要这些组件
1.创建一个新类(例如Main),它没有用main方法扩展Application
1.从Main.main调用App.main(App extends Application)方法。
1.现在运行调用Main.main的应用程序。

public class App extends Application {
    [...]
    public static void main(String [] args) {
        launch(args);
    }
    [...]
}
public class Main {
    public static void main(String [] args) {
        App.main(args);
    }
}

相关问题