process.waitFor() 似乎没有返回正确的值

发布于 2024-08-31 03:18:52 字数 270 浏览 5 评论 0原文

我在我的应用程序中使用下面的代码...

Process process = Runtime.getRuntime().exec(
    "perl " + perlScript + " " + project + " " + fileName);
:
:
:
result = process.waitFor();
:
:

并且这个结果每次都给出代码 2...在运行应用程序时。

“原因代码”可能是什么原因???

提前致谢

I am using the below code in my application ...

Process process = Runtime.getRuntime().exec(
    "perl " + perlScript + " " + project + " " + fileName);
:
:
:
result = process.waitFor();
:
:

and this result gives the code 2 every time.....while running the application.

what could be the reason for the "reason code" ???

Thanks In Advance

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

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

发布评论

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

评论(1

浮生未歇 2024-09-07 03:18:52

您调用的 perl 脚本返回值 2。您需要查看 perl 脚本来确定该值的含义——没有通用方法可以知道给定程序返回给定值的原因。

The perl script that you call is returning the value 2. You need to look at the perl script to determine what that value means--there is no generic way to know why a given program returns a given value.

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