Help needed in UnsatisfiedLinkError
Hi,
I had this error when I try to run my java application:
java.lang.UnsatisfiedLinkError: no Authentication in java.library.path
at java.lang.ClassLoader.loadLibrary (ClassLoader.java:1312)
at java.lang.Runtime.loadLibrary0(Runtime.java:749)
at java.lang.System.loadLibrary(System.java:820)
at testelva.TestElva.<clinit>(testelva.java:9)
Exception in thread "main"
It is pointing to my loadlibrary method, I am trying to use the loadlibrary method to load a .lib. Can anyone tell me how to solve this problem as I am new to JNI. Thanks.
Khim

