{{theTime}}

Search This Blog

Total Pageviews

Exception in thread "main" java.lang.UnsatisfiedLinkError:

try {
 System.load("client.dll") ;
}catch(...){
}
throws Unsatisfiedlinker error.  How to resolve this error.

Resolution:
The DLL must be in the PATH.  The OS loader uses PATH to find DLLs.  Try setting JVM arguments
-Djava.library.path="Absolute DLL location." 
-- In eclipse, navigate to Runtime Configuration, "Environment" tab and add new variable "PATH" and update the absolute location.

No comments:

Java Sequenced Collection Java Sequenced Collection The Sequenced Collection feature was introduced in Jav...