To execuete another jar file.
Hello,
If I invoke another exeuable jar file using Runtime.getRuntime().exec("java -jar ***");
Is there any method to listen to that invoked Jar process? I tried System.out but the invoked jar program gives no out since there is no console.
How to monitor the process of another JAR program then?
Thanks!

