阅读量:1
在Java中,可以使用Runtime
类或ProcessBuilder
类来远程调用shell脚本。
- 使用
Runtime
类:
String command = "ssh user@remote_host 'sh /path/to/script.sh'"; Process process = Runtime.getRuntime().exec(command); // 读取命令输出 BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while ((line = reader.readLine()) != null) { System.out.println(line); } // 等待命令执行完毕 int exitCode = process.waitFor(); System.out.println("Command exit code: " + exitCode);
请注意,这里使用了ssh
命令来远程执行shell脚本,需要确保本地机器已经配置好了SSH连接,并且可以免密登录到远程机器。
- 使用
ProcessBuilder
类:
String command = "ssh"; String[] arguments = {"user@remote_host", "sh", "/path/to/script.sh"}; ProcessBuilder processBuilder = new ProcessBuilder(command, arguments); Process process = processBuilder.start(); // 读取命令输出 BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while ((line = reader.readLine()) != null) { System.out.println(line); } // 等待命令执行完毕 int exitCode = process.waitFor(); System.out.println("Command exit code: " + exitCode);
使用ProcessBuilder
可以更灵活地构造命令和参数,并且可以设置其他环境变量和工作目录等。
无论使用哪种方法,都需要确保远程机器已经安装了SSH服务,并且可以接受和执行传递的shell脚本。同时,要注意远程执行shell脚本可能涉及到安全风险,需要谨慎处理。