Shell 脚本不会从 Java 程序运行

发布于 2024-12-12 16:19:04 字数 555 浏览 0 评论 0原文

有两件事需要立即注意....

  1. shell 脚本手动运行良好
  2. 我编写的一个简单的 shell 脚本(echo hello)通过 java 运行良好

所以我有一个 shell 脚本,我试图通过Java进程。

File sqlF = new File("path to deploy script");

Process proc = rt.exec(sqlF + "/deploy.sh");
proc.waitFor();

System.out.println(proc.exitValue());

当我运行此代码时,我得到一个不明确的返回值“1”。

这是 shell 脚本(因为我想问题可能源于这里):

#!/bin/bash
mysql -u XXXX -h XXXXX < XXXXX.sql
mysql -u XXXX -h XXXXX database < DEPLOY-HELPER.sql

关于为什么这不能从 Java 正确执行的任何想法?

There are two things to note right off the bat....

  1. The shell script runs fine manually
  2. A simple shell script (echo hello) that I wrote runs fine through java

So I have a shell script that I'm attempting to run through a Java process.

File sqlF = new File("path to deploy script");

Process proc = rt.exec(sqlF + "/deploy.sh");
proc.waitFor();

System.out.println(proc.exitValue());

When I run this code I get an ambiguous return value of "1".

Here's the shell script (because I imagine the issue may stem from here):

#!/bin/bash
mysql -u XXXX -h XXXXX < XXXXX.sql
mysql -u XXXX -h XXXXX database < DEPLOY-HELPER.sql

Any ideas as to why this would not execute properly from Java?

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

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

发布评论

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

评论(1

我三岁 2024-12-19 16:19:04

如果要运行 shell 脚本,则必须显式调用 shell 并将脚本名称作为参数传递给它,如

bash /path/to/script/deploy.sh

“既不是 Runtime.exec() 也不是 ProcessBuilder” 中所示他们自己知道如何执行 shell 脚本,但只知道如何执行二进制可执行文件。

If you want to run a shell script you must explicitly invoke the shell and pass it the name of the script as an argument, as in

bash /path/to/script/deploy.sh

Neither Runtime.exec() nor ProcessBuilder know how to execute shell scripts themselves, they only know how to execute binary executables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文