gpt4 book ai didi

java - 如何在Java中执行项目目录中的.jar文件?

转载 作者:太空宇宙 更新时间:2023-11-04 10:48:41 24 4
gpt4 key购买 nike

我有一个 .jar 文件,我想在 java 中执行。 .jar 文件位于主项目目录内。我怎样才能做到这一点

public void pickColor (ActionEvent event) throws IOException, InterruptedException {
String filePath = "pickColor.jar";
Runtime.getRuntime().exec(" java -jar " + filePath);
}

如果我添加文件的完整路径,它就可以工作......

最佳答案

您可以尝试以下代码

public void pickColor (ActionEvent event) throws IOException, InterruptedException {
String fileName = "pickColor.jar";
String filePath = System.getProperty("user.dir");
Runtime.getRuntime().exec(" java -jar " + filePath + "\" + fileName);
}

关于java - 如何在Java中执行项目目录中的.jar文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48092249/

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