Why I get the output of the process after the process has terminated? I need to get the process output "live", while the process is running and not after the process has terminated. I would like to run a process like a jboss, which is logging on the standard output, so I need that information in time, and not after the process has terminated. Thank you for answers.
Here is my code:
try {
process = processBuilder.start();
processOutput = process.getOutputStream();
processInput = process.getInputStream();
processReader = new BufferedReader(new InputStreamReader(
processInput));
processWriter = new BufferedWriter(new OutputStreamWriter(
processOutput));
while ((line = processReader.readLine()) != null) {
System.out.println(line);
}
processReader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Extension:
So I would like to run an external program from an eclipse plug-in with a button. When I click to the button, the program start and the output of the external program will go back to the console. When I click to the stop, the program stops. So here is how I make the instance of the process builder. And I made an example class to test the process builder without start the whole plugin project in every modification.
Here is my process builder instance which is implements the Runnable:
@Override
public void run() {
List<String> command = new ArrayList<String>();
command.add(serverPath);
command.add(String.valueOf(count));
command.add(filePath);
processBuilder = new ProcessBuilder(command);
processBuilder.redirectErrorStream(true);
try {
process = processBuilder.start();
processOutput = process.getOutputStream();
processInput = process.getInputStream();
processReader = new BufferedReader(new InputStreamReader(
processInput));
processWriter = new BufferedWriter(new OutputStreamWriter(
processOutput));
System.out.println(process.waitFor());
while ((line = processReader.readLine()) != null) {
System.out.println(line);
}
processReader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
The parameters are come in the constructor. And here is the instantiation:
public static void main(String[] args) throws Exception
{
SimulationProcess smp = new SimulationProcess(count, "file",
"program_name");
smp.run();
}