如何从另一个路径执行脚本

发布于 2024-09-19 08:44:27 字数 421 浏览 3 评论 0原文

我想从 java 项目执行 myscript.sh
我想做的调用是这样的:

Process p = Runtime.getRuntime().exec("./myscript.sh "+param1+" "+param2);

问题是这个 script.sh 不在同一个路径中,所以我尝试这样做:

Process p = Runtime.getRuntime().exec("src/main/resources/./myscript.sh "+param1+" "+param2);

但脚本不再执行。我想问题出在我放置路径的方式上,因为我已经检查过,并且如果脚本位于同一路径中,则脚本可以正常工作。

有什么想法吗?

提前致谢

I want to execute myscript.sh from a java project.
The call I want to do is something like this:

Process p = Runtime.getRuntime().exec("./myscript.sh "+param1+" "+param2);

The problem is that this script.sh is not in the same path, so I tryed to do:

Process p = Runtime.getRuntime().exec("src/main/resources/./myscript.sh "+param1+" "+param2);

But the script is not executed anymore. I guess the problem is in the way I put the path, because I have checked and the script works perfectly if it is in the same path.

Any ideas?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相守太难 2024-09-26 08:44:27

您可以使用 ProcessBuilder 代替。在 Runtime.exec 的文档 您甚至可以阅读以下内容:

ProcessBuilder.start() 现在是使用修改后的环境启动进程的首选方法。

如文档中所示的示例,您可以使用 pb.directory(File f) 设置工作目录:

ProcessBuilder pb = new ProcessBuilder("myCommand", "myArg1", "myArg2");
// ...
pb.directory("myDir");
Process p = pb.start();

You could use the ProcessBuilder instead. In the documentation for Runtime.exec you can even read the following:

ProcessBuilder.start() is now the preferred way to start a process with a modified environment.

As an example shows in the documentation, you can use pb.directory(File f) to set the working directory:

ProcessBuilder pb = new ProcessBuilder("myCommand", "myArg1", "myArg2");
// ...
pb.directory("myDir");
Process p = pb.start();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文