I have the "SomeJarA.jar" with the followiung structure:
SomeJarA
|
|--lib/SomeJarB.jar
|--com/.../SomeClass.class
Im trying to execute the "SomeJarB.jar" in "SomeClass.java" using:
Runtime.getRuntime().exec("java -jar SomeJarB.jar");
Is this possible?