How to execute command with parameters?

前端 未结 3 1526
予麋鹿
予麋鹿 2020-11-22 16:34

How am I to execute a command in Java with parameters?

I\'ve tried

Process p = Runtime.getRuntime().exec(new String[]{\"php\",\"/var/www/script.php -         


        
3条回答
  •  深忆病人
    2020-11-22 17:16

    See if this works (sorry can't test it right now)

    Runtime.getRuntime().exec(new String[]{"php","/var/www/script.php", "-m", "2"});
    

提交回复
热议问题