{{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 Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...