giving 'java.library.path' in netbeans for .dll/.so files

saplingPro picture saplingPro · May 23, 2012 · Viewed 49.5k times · Source

How do i give the path for the .dll or .so file in netbeans to load the library using

System.loadLibrary("Foo")

I read this on netbeans page but couldn't help me. as it gives the unsatisfied link error.

These are the two things i tried :

In the following snapshot i created a lib folder inside the netbeans project and placed the dll files inside it.

enter image description here

In the second snapshot i created a lib folder inside the modules folder and placed all the dll files inside lib folder as stated in the link.

enter image description here

But both of them give me unsatisfied link error exception. How do i set java.library.path in netbeans so that i can directly test the application from netbeans, without having to go and write on the terminal ?

Answer

JDGuide picture JDGuide · Aug 10, 2012

Its working now. Some little bit setting you have to do with your Netbean IDE.Only of Netbean IDE.

Follow the Steps :-

==>Right click on the Project
==>Properties
==>Click on RUN
==>VM Options : -Djava.library.path="C:\Your Directory where Dll is present"
==>Ok

Its working 100%. I have done this in my own project.