How to call an executable jar from php with an argument passed to main method

半世苍凉 提交于 2019-11-27 07:08:46

问题


I have created an executable jar and it works fine. For the testing purpose, I have used a dummy variable in the main method.

Instead, I need to pass a string variable, while calling this executable jar from php.

In short, I need to:

  1. Call the executable jar from PHP
  2. While calling the jar, I need to pass a string variable from PHP to the main method of the class inside executable jar.

How can I accomplish the aforesaid?


回答1:


shell_exec("java -jar your_JAR.jar arg1 arg2");

you can also execute Java at all by using exec instead of shell_execute, giving it $output and & $return_var variables (see the linked manual page) and seeing what they contain after the call.



来源:https://stackoverflow.com/questions/16766464/how-to-call-an-executable-jar-from-php-with-an-argument-passed-to-main-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!