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:
Post a Comment