I am now on a linux machine. I have a Java program which would run some linux command, for example ps, top, list or free -m.

The way to run a command in Java is as follows:

Process p = Runtime.getRuntime().exec("free -m");

How could I collect the output by Java program? I need to process the data in the output.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 8 down vote accepted

Use Process.getInputStream() to get an InputStream that represents the stdout of the newly created process.

Note that starting/running external processes from Java can be very tricky and has quite a few pitfalls.

They are described in this excellent article, which also describes ways around them.

link|improve this answer
But I notice if the command is "free -m", the example works, but if it is "top -n 1" it does not work. – user84592 Jun 24 '11 at 10:55
@user: that's probably because the output of free -m is much shorter than the output of top -n 1 and still fits in the OS buffer I mentioned in the common to the anwer by @spoon. You must read the content of the stream before trying to call waitFor(). The details are in the article I linked to (yes, you must read it if you seriously want to use Runtime.exec() or ProcessBuilder. There's no way around it). – Joachim Sauer Jun 24 '11 at 10:57
I follow the List4.7 and gave a command line "top -n 1", it prints out ERROR> top: failed tty get ERROR> ExitValue: 1 – user84592 Jun 24 '11 at 11:51
@user: in that case, you're probably running into a limitation of top: It wants a real terminal to be its output and not just a stream. You could try adding the -b option to run it in batch mode. – Joachim Sauer Jun 24 '11 at 12:29
it does work for "top -b -n 1". It is great. Big thanks. – user84592 Jun 24 '11 at 12:49
feedback

To collect the output you could do something like

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

This would run your script and then collect the output from the script into a variable. The link in Joachim Sauer's answer has additional examples of doing this.

link|improve this answer
1  
Be careful! You're falling into one of the pits (actually, several): When the output of the command is bigger than the buffer on stdout by the OS (and that buffer is often just a few Kb), then your waitFor() call will block indefinitely. – Joachim Sauer Jun 22 '11 at 14:25
I also notice if the terminal command is "free -m", the program works. But if it is "top -n 1", it does not work. – user84592 Jun 24 '11 at 11:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.