I want to run a runnable jar archive from my startup Java application. I need to be able to manage running classes from my application (i.e. stop, start them, etc.).
Basically I need to make an eqvilient from java -jar X.jar.
I can not use Runtime.getRuntime (). exec ("..."), because the jar files will be encoded and must be decoded first.
NewToJava
source
share