Just what the subject says, is there a way in Java to get a list of all the JNI native libraries which have been loaded at any given time?
|
|
|
|
|
|
|
There is a way to determine all currently loaded native libraries if you meant that. Already unloaded libraries can't be determined. Based on the work of Svetlin Nakov (Extract classes loaded in JVM to single JAR) I did a POC which gives you the names of the loaded native libraries from the application classloader and the classloader of the current class. First the simplified version with no bu....it exception handling, nice error messages, javadoc, .... Get the private field in which the class loader stores the already loaded libraries via reflection
Call the above like this
And voilá Get the full source code from here |
||||||
|
