runtime.getruntime().exec 执行linux带参数的脚本要怎么写
时间: 2024-05-07 20:21:29 浏览: 133
runtime源码
可以使用以下方式来执行带参数的Linux脚本:
```java
String[] cmd = {"sh", "/path/to/script.sh", "arg1", "arg2"};
Process process = Runtime.getRuntime().exec(cmd);
```
其中,`sh`是Linux下的shell命令,`/path/to/script.sh`是要执行的脚本文件的路径,`arg1`和`arg2`是脚本文件的参数。在`exec`方法中使用`cmd`数组作为参数。这将创建一个新的进程来执行脚本,并将结果返回给`process`变量。
阅读全文