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

The thing is... Im running a process with the DefaultExecutor Class of org.apache.commons.exec libraries. Like this:

public class Main {

public static void main(String[] args) throws IOException, InterruptedException {

    CommandLine cmd = new CommandLine("java");
    DefaultExecutor exec = new DefaultExecutor();
    exec.setExitValue(1);
    exec.execute(cmd);
}

I need to take that output "on the run" with another Thread, to log it elsewhere. What is the best way of accomplish that?

Thanks!

share|improve this question

2 Answers

Use a PipedOutputStream and a PipedInputStream. You can find an example here. Don't forget to close your streams.

share|improve this answer

You should probably look at log4j, a rather useful project from Apache. In a project I was recently working on, log4j was used to put all of the logs from various threads into one convenient file. Just make sure that you construct the logger in such as way that only one instance of it is available, and this should solve your problem.

Unfortunately, I was only an intern, and was not present when the team set up the logging system, so I can't actually help you with configuration. Luckily the project's website appears to have plenty of documentation to help you out.

share|improve this answer
I know how to log it, but I need to get the String from the console before. – Emiliano Sep 19 '11 at 13:00

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.