gpt4 book ai didi

java - 无法调用可执行 Jar 中的 .exe 文件。如何?

转载 作者:行者123 更新时间:2023-11-29 08:14:53 24 4
gpt4 key购买 nike

我想调用一个包装在可执行 Jar 文件中的 .exe 文件。以下是应该调用 .exe 文件的主类。

    import java.io.File;

public class TriggerApp{

public static void main(String[] args)
{
try
{
Runtime rt=Runtime.getRuntime();

rt.exec("MoreComplexUI.exe");

}
catch(Throwable t)
{
System.out.print(t.getMessage());

}
}
}

它不起作用。此 Jar 文件包含运行 .exe 的其他支持文件

最佳答案

它是资源而不是物理文件。

You need to extract it somewhere然后以全路径执行

关于java - 无法调用可执行 Jar 中的 .exe 文件。如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5497713/

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