How to loadLibrary() from a Jar file.
I want to package my native code libraries (DLL's and Lib's) inside a Jar file. This Jar file is my package that uses the native code libraries. When client applications use my package I would like them to have access to all the code including the native code.
When the client makes a call to System.loadLibrary() or load() it cannot find the native code if it's in the Jar file. If I take it out and place it next to the Jar file, all is fine. Is it possible to make loadLibrary() and/or load() look at a Jar file?
-dh

