How to know library methods
Hi,I am loading .DLL file from the Runtime.loadLibrary method. I want to know list of methods/function call available in that library file.Is any class available in java for that ? Any help will be appriciated for me...Thanks In Advance.
# 1
Hi,You can use JNative.getDLLFileExports(pathToLib), returns a String array containing the list of exported functions.See : http://jnative.free.fr/docs/org/xvolks/jnative/JNative.html#getDLLFileExports(java.lang.String)--Marc ( http://jnative.free.fr)