When using java from Matlab, is there some way to figure out from where in matlab\'s java class path is a class being loaded? I\'m trying to diagnose a error caused by confl
Assuming that an URLClassLoader is being used, you can get the file: URL of the class file like this:
URLClassLoader
file:
ProblemClass.class.getResource("ProblemClass.class")