Skip to content

Instantly share code, notes, and snippets.

@moods445
Last active February 13, 2019 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moods445/b595e412155a9f1733e1bb061c0f642a to your computer and use it in GitHub Desktop.
Save moods445/b595e412155a9f1733e1bb061c0f642a to your computer and use it in GitHub Desktop.
Custom ClassLoader #Java
JarFile jarFile = new JarFile(jarFilePath.toFile());
URLClassLoader jarClassLoader = new URLClassLoader(
new URL[]{jarFilePath.toUri().toURL()},
this.getClass().getClassLoader()
);
Class tClass = Class.forName(className, true, classLoader);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment