Skip to content

Instantly share code, notes, and snippets.

@lolson
Last active August 29, 2015 14:04
Show Gist options
  • Save lolson/826072e91c408b38f3c2 to your computer and use it in GitHub Desktop.
Save lolson/826072e91c408b38f3c2 to your computer and use it in GitHub Desktop.
Check files loaded by Classloader
for(java.net.URL url:((java.net.URLClassLoader)ClassLoader.getSystemClassLoader()).getURLs()){
System.out.println(url.getFile());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment