java import jar during runtime code example

Example 1: import jar file

# cd into the directory that contains your jar file
jar xf name.jar

Example 2: 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);

Tags:

Java Example