Skip to content

Instantly share code, notes, and snippets.

@kelapure
Created February 24, 2019 02:21
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 kelapure/dc476ed3856a64891394fbebb3352357 to your computer and use it in GitHub Desktop.
Save kelapure/dc476ed3856a64891394fbebb3352357 to your computer and use it in GitHub Desktop.
classloaderdebug
ClassLoader cl = ClassLoader.getSystemClassLoader();
URL[] urls = ((URLClassLoader)cl).getURLs();
for(URL url: urls){
System.out.println(url.getFile());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment