stianl
8/28/2014 - 7:59 AM

Get where class was loaded from

Get where class was loaded from

// http://stackoverflow.com/questions/1983839/determine-which-jar-file-a-class-is-from
Class klass = String.class;
URL location = klass.getResource('/'+klass.getName().replace('.', '/')+".class");