I am writing something like this
ByteArrayOutputStream bout = new ByteArrayOutputStream();
System.setOut(out);
System.out.println("Hello");
ProcessBuilder pb1 = new ProcessBuilder("./native-app");
pb1.redirectOutput(ProcessBuilder.Redirect.INHERIT);
pb1.start();
Now "Hello" no longer shows on screen, but the output of "native-app"
still shows up there. What else shall I do?
This is Ubuntu 14.04.2. Thanks Max
