Java Native Interface (JNI) - bundling a native library with my jar file
My application consists of a bunch of java classes (in a jar file) plus a large native library.
How do I bundle these together and make it easy for the user to deploy and to
set up the java.library.path to include this library location.
I would like to put the native library into the jar file and have System.loadLibrary()
automatically find it, but don't know how to do this.
Thanks,
Andy

