Why am I getting this UnsatisfiedLinkError with native code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:35:07Z http://stackoverflow.com/feeds/question/761639 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/761639/why-am-i-getting-this-unsatisfiedlinkerror-with-native-code 0 Why am I getting this UnsatisfiedLinkError with native code? KNewton 2009-04-17T18:28:00Z 2009-04-20T16:26:02Z <p>I have a library called HelloWorld.so and a program HelloWorld.java with this content:</p> <pre><code>class HelloWorld { private native void print(); public static void main(String[] args) { new HelloWorld().print(); } static { System.loadLibrary("HelloWorld"); } } </code></pre> <p>Now when I try to run HelloWorld.java I get this error:</p> <pre> $ /usr/java1.4/bin/java HelloWorld Exception in thread "main" java.lang.UnsatisfiedLinkError: no HelloWorld in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1491) at java.lang.Runtime.loadLibrary0(Runtime.java:788) at java.lang.System.loadLibrary(System.java:834) at HelloWorld.&lt;clinit>(HelloWorld.java:7) </pre> <p>Any tips?</p> http://stackoverflow.com/questions/761639/why-am-i-getting-this-unsatisfiedlinkerror-with-native-code/761649#761649 6 Answer by mmyers for Why am I getting this UnsatisfiedLinkError with native code? mmyers 2009-04-17T18:29:43Z 2009-04-18T00:25:38Z <p>Where is HelloWorld.so located? You probably need to specify its parent directory using the command-line parameter <code>"-Djava.library.path"</code>. </p> <p>For example, if it's in <code>"/path/libs/HelloWorld.so"</code>, add <code>-Djava.library.path=/path/libs</code> as an option when invoking <code>java</code>. For instance, it's <code>"-Djava.library.path=lib"</code> on one of my projects.</p> <p><strong>Edit:</strong> Dan Dyer points out that the environment variable <code>LD_LIBRARY_PATH</code> also can be used for this.</p> http://stackoverflow.com/questions/761639/why-am-i-getting-this-unsatisfiedlinkerror-with-native-code/769021#769021 0 Answer by KNewton for Why am I getting this UnsatisfiedLinkError with native code? KNewton 2009-04-20T16:26:02Z 2009-04-20T16:26:02Z <p>@mmyers Thank you for responding. We found out that all we had to do was change System.loadLibrary to System.load and pass the full path + filename as argument, worked like a charm. </p> <p>Even before doing so, we tried using the "-D" parameter and setting LD_LIBRARY_PATH but we weren't successful.</p> <p>Go figure! :)</p> <p>Thanks again, Karen</p>