我想调用一个包含在可执行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
的其他支持文件