how to link native library .so file in netbeans
Exception in thread "main" java.lang.UnsatisfiedLinkError: no lib in java.library.path
Set library path -Djava.library.path=library\path where your *.so file resides.
UnsatisfiedLinkError is shown because no library with the specified name has been found in your java.library.path
Before loading your library:
System.setProperty("java.library.path", "path_to_your_library");
System.getProperty()notSystem.setProperty()