How can I start an .exe file with parameters I get from an output of an .jar file.
I know how I can start my java program with parameters within a batch:
java -jar javaProgram.jar %1 %2 %3 %4
But how can I get a result of the java code for example "Yes" or "No" to start a new program .exe within the same batch?
I this even possible?