getting command line output from mps
i have used to following code to run a jar file from and mps intention. My question is, how can I get the output stream in mps?
Runtimeruntime=Runtime.getRuntime();
stringcommandString="cmd /c java -jar gxw.jar "+filename+" --output=pseudocode";
Processp=runtime.exec(commandString);
Please sign in to leave a comment.
Hey!
I don't know if that's exactly what you'd like to do. I used the Java Process API via command line. See the following code.
Regards m sch95
thanks a lot m sch95!