Answers for "how to run jar file with bin/java.exe"

0

java load jar at runtime

URLClassLoader child = new URLClassLoader(
        new URL[] {myJar.toURI().toURL()},
        this.getClass().getClassLoader()
);
Class classToLoad = Class.forName("com.MyClass", true, child);
Method method = classToLoad.getDeclaredMethod("myMethod");
Object instance = classToLoad.newInstance();
Object result = method.invoke(instance);
Posted by: Guest on February-08-2021

Browse Popular Code Answers by Language