Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When experiencing networking problems on client machines, I'd like to be able to run a few command lines and email the results of them to myself.

I've found Runtime.exec will allow me to execute arbitrary commands, but Collecting the results in a String is more interesting.

I realize I could redirect output to a file, and then read from the file, but my spidey sense is telling me there's a more elegant way of doing it.

Suggestions?

share|improve this question
Have a look at this article. – kgiannakakis May 19 '09 at 13:35

6 Answers

up vote 27 down vote accepted

You need to capture both the std out and std err in the process. You can then write std out to a file/mail or similar.

See this article for more info, and in particular note the StreamGobbler mechanism that captures stdout/err in separate threads. This is essential to prevent blocking and is the source of numerous errors if you don't do it properly!

share|improve this answer
1  
Worked like a charm. – Allain Lalonde May 19 '09 at 17:41
I noticed that if the command gives a lot of output the code flow will continue before the Gobblers are done outputting. Need to call .join() on them before returning. – Zitrax Oct 20 '11 at 14:27
Extremely effective and simple method. One thing to note though is that the cmd array initialization in the Main method seems to be a little dated for Windows 7. Add a final "else" clause that initializes the cmd array to the NT style even if the other else if( osName.equals( "Windows NT" ) comes back false. – nomizzz Oct 24 '11 at 22:08
Is the solution with SteamGobbler is only for a Windows server? If I am using Unix- it wouldn't happen? – Odelya Nov 20 '11 at 13:42
In Windows, it is either command.exe or cmd.exe. If you use Linux, you have to specify your choice of command interpreter like bash, etc. – ee. Feb 17 '12 at 1:06
show 1 more comment

Use ProcessBuilder. After calling start() you'll get a Process object from which you can get the stderr and stdout streams.

UPDATE: ProcessBuilder gives you more control; You don't have to use it but I find it easier in the long run. Especially the ability to redirect stderr to stdout which means you only have to suck down one stream.

share|improve this answer
1  
And how can I get my output from an OutputStream? – pihentagy Jul 28 '11 at 12:53

Use Plexus Utils, it is used by Maven to execut all external processes.

Commandline commandLine = new Commandline();
    commandLine.setExecutable(executable.getAbsolutePath());

    Collection<String> args = getArguments();

    for (String arg : args) {
        Arg _arg = commandLine.createArg();
        _arg.setValue(arg);
    }

WriterStreamConsumer systemOut = new WriterStreamConsumer(console);
    WriterStreamConsumer systemErr = new WriterStreamConsumer(console);

returnCode = CommandLineUtils.executeCommandLine(commandLine, systemOut, systemErr, 10);
            if (returnCode != 0) {
   // bad
} else {
  // good
}
share|improve this answer
Why use an external library when the core language has a perfectly suitable alternative? – PaulJWilliams May 19 '09 at 13:54
There are some differences which may not be seen in the beginning. 1. if you call Process.waitFor() it will block, this means you MUST read the the process output otherwise the process will wait until the output buffer(console output) will be available. if you choose this path(getting the output yourself) you must not use waitFor(). 2. if you poll, then you have to add yourself code to handle that while you're waiting to read the output. The purpose of libraries like Plexus Utils - 246k- is to help you avoid reinventing the wheel over an over again :) – adrian.tarau May 19 '09 at 16:23
Ant does the same thing, you can use it if you want, there is a core task which can be called(with a proper initialized ant context) to perform this task, but I prefer Plexus Utils since is smaller(you can even strip out everything except the cli package, which means you will have less than 50k), dedicated and proof to be stable(since is included in Maven 2) – adrian.tarau May 19 '09 at 16:26

Runtime.exec() returns a Process object, from which you can extract the output of whatever command you ran.

share|improve this answer

VerboseProcess utility class from jcabi-log can help you:

String output = new VerboseProcess(
  new ProcessBuilder("executable with output")
).stdout();

The only dependency you need:

<dependency>
  <groupId>com.jcabi</groupId>
  <artifactId>jcabi-log</artifactId>
  <version>0.7.5</version>
</dependency>
share|improve this answer

Using Runtime.exec gives you a process. You can these use getInputStream to get the stdout of this process, and put this input stream into a String, through a StringBuffer for example.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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