我正在尝试在远程机器上运行一些命令并使用 Java 捕获结果。我有一个名为 test.sh 的 shell 脚本,其中包含以下命令:
sshpass -p 'password' ssh root@host.com echo hostname
我正在使用下面的 java 代码运行它:
public void runCommand() throws IOException, InterruptedException {
ProcessBuilder builder = new ProcessBuilder();
boolean isWindows = System.getProperty("os.name").toLowerCase().startsWith("windows");
if (isWindows) {
builder.command("cmd.exe", "/c", "dir");
} else {
builder.command("sh", "-c", "sh test.sh");
}
builder.directory(new File(System.getProperty("user.home")));
Process process;
BufferedReader reader = null;
try {
process = builder.start();
reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
StringBuilder stringBuilder = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
stringBuilder.append(line);
}
String output = stringBuilder.toString();
System.out.println(output);
} finally
{
if (reader != null)
try {
reader.close();
} catch (IOException e) {
}
}
}
该命令执行,但我没有在输出中得到任何东西。如果我使用像 echo、hostname 这样的简单命令,那么我可以在输出中得到结果。我知道可以解决问题的JSch,但我不能使用它。