使用 php 帮助执行 java

发布于 2024-11-26 05:01:55 字数 269 浏览 3 评论 0原文

所以我有以下脚本

$execStr = 'cd /D Z:\\folder'
exec($execStr);
$execStr = 'java -jar somejar.jar';
exec($execStr);

,该 jar 对 mysql 数据库执行一些操作...

但是当我运行它时,该 jar 似乎无法正常运行,因为数据库没有更改,

但是当我从命令运行完全相同的字符串时线它可以正常工作

我做错了什么?

so I have the following script

$execStr = 'cd /D Z:\\folder'
exec($execStr);
$execStr = 'java -jar somejar.jar';
exec($execStr);

the jar does some operations on a mysql database...

but when I run it, it appears that the jar did not run properly because the database was unchanged

but then when I run the exact same strings from the command line it would work properly

what am I doing wrong?

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

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

发布评论

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

评论(4

稍尽春風 2024-12-03 05:01:55

shell_exec('/path/to/java -jar Z:\folder\somejar.jar');
您将 /path/ 子到运行 java 的真实位置。

shell_exec('/path/to/java -jar Z:\folder\somejar.jar');
where you sub /path/to to the real place your java is run from.

浅笑依然 2024-12-03 05:01:55

试试这个:

$execStr = 'java -jar Z:\folder\somejar.jar';
shell_exec($execStr);

Try this:

$execStr = 'java -jar Z:\folder\somejar.jar';
shell_exec($execStr);
荒人说梦 2024-12-03 05:01:55

尝试在 cd 之后运行 dirls 以确保 exec 环境从一个命令持续到下一个命令。

Try running dir or ls after your cd to make sure the exec environment is persisting from one command to the next.

时光瘦了 2024-12-03 05:01:55

我想这是因为当您调用 java -jar ... 时,您不再位于 Z:\folder 目录中。尝试单个命令:

java -jar "Z:\folder\somejar.jar"

I guess that's because when you call java -jar ... you're no longer in Z:\folder directory. Try a single command:

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