In a Java project, I am using a third-party library that loads some native library via
System.loadLibrary(\"libName\");
I\'d like to be able to
I tried to following to load a native Growl library for a Java application on my Mac where the lib is in the root of the classpath of my application:
System.load(GrowlUtils.class.getResource("/libgrowl.jnilib").getFile().toString());