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.
[272 byte] By [vinodpatel2006a] at [2007-11-26 21:41:19]
# 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)
mdentya at 2007-7-10 3:26:42 > top of Java-index,Java HotSpot Virtual Machine,Specifications...
# 2
I know that Visual Studio and GCC both have dll tools that will show the exported functions. There are also several free tools that will do it.Jim
jjones3566a at 2007-7-10 3:26:42 > top of Java-index,Java HotSpot Virtual Machine,Specifications...