gpt4 book ai didi

java - 从 tomcat 服务器中的 webapp 调用 java 程序 - java 程序在 tomcat 服务器之外

转载 作者:太空狗 更新时间:2023-10-29 12:20:08 26 4
gpt4 key购买 nike

我在 tomcat 服务器中有一个 webapp。我在 tomcat 服务器之外还有一个 java 程序 - 在 linux 机器根目录中。我需要在外部调用 java 程序并获得对 webapp 的响应。这可能吗?

请给我一个答案?

提前致谢。

最佳答案

您可以在运行时对象上使用 exec 方法:

Runtime rt = Runtime.getRuntime(); 
Process proc = rt.exec("whatever_you_want_to_run");
int exitVal = proc.exitValue();

关于java - 从 tomcat 服务器中的 webapp 调用 java 程序 - java 程序在 tomcat 服务器之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12181432/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com