gpt4 book ai didi

JavaFX - 生成 App Jar 时不显示虚拟键盘

转载 作者:搜寻专家 更新时间:2023-11-01 03:01:21 25 4
gpt4 key购买 nike

我在 IntelliJ14.14 中创建了一个 JavaFX 应用程序,它将使用 JavaFX 虚拟键盘。我在 mainApp 类 Controller 中添加了以下属性:

public static void main(String[] args) {
System.setProperty("com.sun.javafx.isEmbedded", "true");
System.setProperty("com.sun.javafx.touch", "true");
System.setProperty("com.sun.javafx.virtualKeyboard", "javafx");
launch(args);
}

当我从 IntelliJ 运行应用程序时,一切正常。虚拟键盘完美运行。

但是当我从 Build -> Build Artifacts... -> Build 生成应用程序的 Jar 文件并执行它时,键盘永远不会显示,因为 VM未设置选项。

这是我缺少的东西......?

提前致谢...

编辑

我找到了一种方法来完成这项工作,使用以下命令从 cmd 运行文件:

java -Dcom.sun.javafx.isEmbedded=true -Dcom.sun.javafx.virtualKeyboard="javafx" -Dcom.sun.javafx.touch=true -jar myApp.jar 

但是我想让它只执行 Jar 文件...

编辑

还有另一种附近的方法可以完成我想要的...

在jar的同一文件夹下创建文件.bat并放入:

start javaw -Dcom.sun.javafx.isEmbedded=true -Dcom.sun.javafx.virtualKeyboard="javafx" -Dcom.sun.javafx.touch=true -jar myApp.jar 

因此,当执行 .bat 文件并启动 jar 文件时,系统属性会正确加载...

最佳答案

public class MyApp {  
public static void main(String[] args) {

if (args.length == 0) {
try {
// re-launch the app itselft with VM option passed
Runtime.getRuntime().exec(new String[] {"java", "-Dcom.sun.javafx.isEmbedded=true", "-Dcom.sun.javafx.virtualKeyboard=\"javafx\"", "-Dcom.sun.javafx.touch=true", "-jar", "myApp.jar"});
} catch (IOException ioe) {
ioe.printStackTrace();
}
System.exit(0);
}

// Run the main program with the VM option set
//...
//...
}
}

关于JavaFX - 生成 App Jar 时不显示虚拟键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33482907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com