如何在html网页上打印linux服务器变量

时间:2017-03-20 14:41:05

标签: java shell unix server putty

基本上我想创建一个网页来监控企业服务器的健康状态。 我需要基本的想法如何连接到服务器并在使用putty IP的企业服务器上的网页上打印FileSystem stat。

1 个答案:

答案 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);