Java如何执行带参数的命令?
如何在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
未指定参数,因此效果也不佳。
回答:
看看是否可行(对不起,现在无法测试)
Runtime.getRuntime().exec(new String[]{"php","/var/www/script.php", "-m", "2"});
以上是 Java如何执行带参数的命令? 的全部内容, 来源链接: utcz.com/qa/412451.html