springboot执行linux命令
时间: 2023-04-27 11:02:24 浏览: 660
JAVA执行shell命令小工具
可以使用Java中的Runtime类或ProcessBuilder类来执行Linux命令。在Spring Boot中,可以使用@ShellComponent注解来创建一个Shell组件,然后在该组件中使用Runtime或ProcessBuilder类来执行Linux命令。例如:
```
@ShellComponent
public class CommandExecutor {
@ShellMethod("Execute Linux command")
public String executeCommand(String command) throws IOException {
Process process = Runtime.getRuntime().exec(command);
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
StringBuilder output = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
output.append(line).append("\n");
}
return output.toString();
}
}
```
在上面的例子中,我们使用Runtime类的exec()方法来执行Linux命令,并使用BufferedReader类来读取命令的输出。最后,我们将输出转换为字符串并返回。
阅读全文