I am trying to load a system library "somesimplejava". I am passing its directory path as an argument to the JVM in eclipse JRE environment VM arguments.
-Djava.library.path=C:\Users\{username}\Desktop
This path contains somesimplejava.dll and somesimplejava.jar. Still, I am facing the below error while running its test case.
java.lang.UnsatisfiedLinkError: no somesimplejava in java.library.path
System.out.println(System.getProperty("java.library.path"));, to check whether your option made it into the actual system properties. - Holger