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?
In Clojure, copy/pastable at the REPL:
(-> (doto (.getDeclaredField ClassLoader "loadedLibraryNames") (.setAccessible true)) (.get (ClassLoader/getSystemClassLoader)))