Skip to content

Instantly share code, notes, and snippets.

@crspiccin
Created August 25, 2014 13:44
Show Gist options
  • Save crspiccin/ed8d1b5f8f32b7c4bed1 to your computer and use it in GitHub Desktop.
Save crspiccin/ed8d1b5f8f32b7c4bed1 to your computer and use it in GitHub Desktop.
Get classloader libs
// Get classloader libs
ClassLoader tcl = Thread.currentThread().getContextClassLoader();
Enumeration<URL> roots = tcl.getResources("");
for(;roots.hasMoreElements();){
URL url = roots.nextElement();
System.out.println("URL: " + url.getPath());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment