I am looking out for a solution/suggestions for the below problem with JNI:
I am trying to load a library file (*.lib) which is created on the fly from my code and placed in the temp folder of the file system. But when i try to load the same, with either System.load or System.loadlibrary in Java API, I am getting Unsatisfied link error.
Important thing here would be, I am running my application from command line using
java -jar <executable-jar-file>
I verified:
- if the library file physically exists before loading
- classpath & path variables are set properly
- In my desktop I dont see any problems which has Windows 7.
- I see this issue in test server with Windows XP but same java version.
Please suggest solutions. Thanks in advance.