如何在Java中使用参数执行命令?
我试过了
Process p = Runtime.getRuntime().exec(new String[]{"php","/var/www/script.php -m 2"});
这不起作用。
String[] options = new String[]{"option1", "option2"}; Runtime.getRuntime().exec("command", options);
由于m未指定参数,因此效果也不佳。
m
看看是否可行(对不起,现在无法测试)
Runtime.getRuntime().exec(new String[]{"php","/var/www/script.php", "-m", "2"});