AS400 Java Java 程序已完成,退出代码为 1
每次尝试在我们的 AS400(I5 OS VR4,JVM 1.4.2)上运行 java 程序都会导致相同的错误消息:
Java 程序已完成,退出代码 1
有什么建议吗?
Every attempt to run a java program on our AS400 (I5 OS VR4, JVM 1.4.2) result in the same error message:
Java program completed with exit code 1
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的链接解释了如何在 400 上运行 Hello World 程序以确保 LICPGM 已正确安装。 您可以使用与故障排除的起始步骤相同的步骤。
http:// publib.boulder.ibm.com/html/as400/v4r5/ic2924/index.htm?info/java/rzaha/runfirst.htm
The link below explains how to run the Hello World program on the 400 to make sure the LICPGM was installed properly. You can use the same as the starting step of your troubleshooting.
http://publib.boulder.ibm.com/html/as400/v4r5/ic2924/index.htm?info/java/rzaha/runfirst.htm
不特定于 AS/400,但是...
所有 Java 程序? 还是特定的java程序?
如果都是 Java 程序 - 您安装的 JVM 已损坏/配置错误。 您打算如何运行 Java 程序?
如果它是一个特定的 Java 程序 - 有记录吗? 错误信息? 返回退出代码 1 并不意味着除了 System.exit(1) 之外的任何内容被调用 - 由于调用它的具体原因(返回值意味着什么,为什么程序确定它需要退出,等等),你有查看代码/与开发人员交谈。
Not AS/400 specific but...
All Java programs? Or a specific java program?
If it's all Java programs - your install of the JVM is corrupted/misconfigured. How are you trying to run the Java programs?
If it's a specific Java program - any logging? error messages? Returning exit code 1 doesn't mean anything other than System.exit(1) was called - for the specific reason it was called (what that return value means, why the program determined it needed to exit, etc.) you'd have to look at the code/talk to the developer.