How to execute command with parameters?

前端 未结 3 1524
予麋鹿
予麋鹿 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:15

    The following should work fine.

    Process p = Runtime.getRuntime().exec("php /var/www/script.php -m 2");
    

提交回复
热议问题