基本上我想创建一个网页来监控企业服务器的健康状态。 我需要基本的想法如何连接到服务器并在使用putty IP的企业服务器上的网页上打印FileSystem stat。
答案 0 :(得分:0)
试试这个,
Process p = Runtime.getRuntime().exec("my terminal command");
p.waitFor();
BufferedReader buf = new BufferedReader(new InputStreamReader(
p.getInputStream()));
String line = "";
String output = "";
while ((line = buf.readLine()) != null) {
output += line + "\n";
}
System.out.println(output);