Launch JVM process from a Java application use Runtime.exec?

Instead of Runtime, you should probably use ProcessBuilder, though I don’t know if something else is even more appropriate in your case (running a Java process in particular).

Leave a Comment