|
Firoz,
When executing java programs getting UnsatisfiedLinkError, that means the native library required (DLL on windows) cannot be found. To fiix that, you have several options:
1) add the DLL containing directory to -Djava.library.path=my/path/to/DLL when launching the jvm to run your program,
2) put the DLL containing directory in the environmental variable PATH (on windows platform),
3) put the DLL containing directory in the environmental variable LD_LIBRARY_PATH,
It is difficult to tell which will work for you because it is very dependent on how you set things up, you'll just have to try them all out.
Good Luck,
Ed.
|